Agorithm/백준 알고리즘

백준 알고리즘 5988번 홀수일까 짝수일까(python)

kimjinho1 2020. 2. 12. 08:39
728x90
반응형

for _ in range(int(input())):
    if int(input()) % 2:
        print('odd')
    else:
        print('even')

728x90
반응형