import java.util.Scanner; class O2 { public static void main(String[] args) { Scanner s = new Scanner(System.in); while (true) { int i = s.nextInt(); if (i == 10) { System.out.println("Warning: 10 detected. You will now be terminated."); break; } } } }