http://codeup.kr/JudgeOnline/problem.php?id=1153
Codeup 1153 - 두 수의 대소 비교
num1, num2 = input().split()num1 = int(num1)num2 = int(num2)if(num1 > num2): print('>')elif(num1 < num2): print('<')else: print('=')
'알고리즘 문제 풀기 > Codeup' 카테고리의 다른 글
| Codeup 1155 - 7의 배수 (0) | 2018.12.13 |
|---|---|
| Codeup 1154 - 큰수 - 작은수 (0) | 2018.12.12 |
| Codeup 1152 - 10보다 작은 수 (else 버전) (0) | 2018.12.11 |
| Codeup 1151 - 10보다 작은 수 (0) | 2018.12.10 |
| Codeup 1150 - 세 수 중 가장 작은 수 (0) | 2018.12.09 |