haju__log

[python][SWEA][D1] 2070. 큰 놈, 작은 놈, 같은 놈 본문

SWEA

[python][SWEA][D1] 2070. 큰 놈, 작은 놈, 같은 놈

haju 2023. 5. 4. 09:57

https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=1&contestProbId=AV5QQ6qqA40DFAUq&categoryId=AV5QQ6qqA40DFAUq&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=ALL&select-1=1&pageSize=10&pageIndex=1&&&&&&&&&& 

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

T=int(input())

for test_case in range(1,T+1):
    a,b=map(int,input().split())
    if a>b:
        print("#%d >" %test_case)
    elif a<b:
        print("#%d <" %test_case)
    else :
        print("#%d =" % test_case)