SWEA
[python][SWEA][D3] 5549. 홀수일까 짝수일까
haju
2023. 5. 12. 15:28
SW Expert Academy
SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!
swexpertacademy.com
T=int(input())
for test_case in range(1,T+1):
n=int(input())
if n%2==0:
print("#%d %s" %(test_case,"Even"))
else:
print("#%d %s" % (test_case, "Odd"))