etc/Coding Test
[codeup] 82. 정수 2개 입력받아 큰 값 출력하기
Jun's N
2021. 12. 12. 18:11
a, b = map(int, input().split())
print(a if (a>=b) else b)
728x90