n = gets.chomp.split(" ") bool = true;i = 0; while(n.length <= i) n_1 = n[i][n[i].length-1].to_i n_2 = n[i + 1][n[i].length-1].to_i n_3 = n_1 ** n_2 if n_3 % 2 == 0 bool = true else bool = false end i += 2 end if bool == true print ":-)" else print ":-(" end