728x90
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QQ6qqA40DFAUq
※ SW Expert 아카데미의 문제를 무단 복제하는 것을 금지합니다.
728x90
T = int(input())
for test_case in range(1, T + 1):
a, b = map(int, input().split())
print("#{}".format(test_case), end=' ')
if (a < b):
print("<")
elif (a == b):
print("=")
else:
print(">")
728x90
'Problem Solving > SWEA' 카테고리의 다른 글
[SW Expert Academy, SWEA 2058] 자릿수 더하기 (python) (0) | 2022.05.06 |
---|---|
[SW Expert Academy, SWEA 2063] 중간값 찾기 (python) (0) | 2022.05.05 |
[SW Expert Academy, SWEA 2068] 최대수 구하기 (python) (0) | 2022.05.04 |
[SW Expert Academy, SWEA 2071] 평균값 구하기 (python) (0) | 2022.05.04 |
[SW Expert Academy, SWEA 2072] 홀수만 더하기 (python) (0) | 2022.05.03 |