백준 34687번: 라면 끓여 먹자 야호 #Python

ColorlessDia·2025년 12월 14일

algorithm/baekjoon

목록 보기
756/836
N, M = map(int, input().split())

W = (N * 81) / 100

if W <= M:
    print('yaho')
else:
    print('no')

0개의 댓글