import java.util.InputMismatchException;import java.util.Scanner;public class Tct2 { public void test(){ Scanner input = new Scanner(System.in); int a = input.nextInt(); } public void show(){ try{ test(); }catch(InputMismatchException e){ System.o...