짝수와 홀수
def solution(num): return "Odd" if num % 2 != 0 else "Even"
이전 포스트 직사각형 별찍기
다음 포스트 최대공약수와 최소공배수