n = gets.chomp.split(" ") bool = true n.length.times do|i| n_1 = n[i].to_i if n_1 % 2 == 0 bool = true else bool = false end end if bool == true print ":-)" else print ":-(" end