import java.io.PrintWriter; import java.util.Scanner; /** * Created by Zhenyi Luo on 15-5-23. */ public class Main { private static void solve(Scanner sc, PrintWriter pw) { int n = sc.nextInt(); double a = sc.nextDouble(); double r = sc.nextDouble(); double x = a / (2 * Math.tan(Math.toRadians(1.0 * 180 / n))); if(x >= r){ pw.println("Give me a kiss!"); }else{ pw.println("I want to kiss you!"); } } public static void main(String[] args) { Scanner sc = new Scanner(System.in); PrintWriter pw = new PrintWriter(System.out); int T = sc.nextInt(); for(int i = 0; i < T; i++){ pw.println("Case #" + (i + 1) + ":"); solve(sc, pw); } pw.flush(); pw.close(); sc.close(); } }