http://codeup.kr/JudgeOnline/problem.php?id=1152
10보다 작은 수 (else 버전)
xxxxxxxxxx
num = input()
num = int(num)
if(num < 10):
print('small')
else:
print('big')
'알고리즘 문제 풀기 > Codeup' 카테고리의 다른 글
Codeup 1154 - 큰수 - 작은수 (0) | 2018.12.12 |
---|---|
Codeup 1153 - 두 수의 대소 비교 (0) | 2018.12.11 |
Codeup 1151 - 10보다 작은 수 (0) | 2018.12.10 |
Codeup 1150 - 세 수 중 가장 작은 수 (0) | 2018.12.09 |
Codeup 1132 - 문자열 출력하기 (0) | 2018.12.08 |