https://programmers.co.kr/learn/courses/30/lessons/12937
function solution(num) { return (num%2)? "Odd" : "Even"; }
10/25
10/25