etc/Coding Test
[codeup] 119. 홀수 짝수 구별
Jun's N
2022. 1. 18. 20:00
n = int(input())
if n%2 == 1 :
print('odd')
elif n%2 == 0 :
print("even")
728x90