BOJ/백준-4101-Python

cosmos·2023년 4월 5일
0
post-thumbnail

문제

코드

# https://www.acmicpc.net/problem/4101
# boj, 4101: 크냐?, python3
def solve(a: int, b: int) -> str:
    return 'Yes' if a > b else 'No'

if __name__ == '__main__':
    while True:
        a, b = map(int, input().split())

        if a == 0 and b == 0:
            break

        print(solve(a, b))

출처 & 깃허브

boj
github

0개의 댓글