import java.util.Scanner;with
import javax.swing.JOptionPane;
Scanner in = new Scanner(System.in); System.out.print("How old are you?"); int age = in.nextInt();with
String response = JOptionPane.showInputDialog(null, "How old are you?"); int age = Integer.parseInt(response);
System.out.println("Next year, you'll be " + age);with
JOptionPane.showMessageDialog(null, "Next year, you'll be " + age);