power-girl0-0

[ 1330 ] 두 수 비교하기 본문

백준 알고리즘/python

[ 1330 ] 두 수 비교하기

power-girl0-0 2021. 2. 28. 02:24
728x90

a,b =map(int, input().split())
if(a>b):
    print(">")
elif(a<b):
    print("<")
elif(a==b):
    print("==")
728x90

'백준 알고리즘 > python' 카테고리의 다른 글

[ 2753 ] 윤년  (0) 2021.02.28
[ 9498 ] 시험 성적  (0) 2021.02.28
[ 2588 ] 곱셈  (0) 2021.02.25
[ 10430 ] 나머지  (0) 2021.02.25
[ 10869 ] 사칙연산  (0) 2021.02.25
Comments