//TestHelloWithPause.java

import java.util.Scanner;

public class TestHelloWithPause
{
    public static void main(String[] args)
    {
        Scanner keyboard = new Scanner(System.in);

        System.out.println("\nHello, my name is Firstname Lastname.");
        System.out.print("Press Enter to continue ... ");
        keyboard.nextLine();

        System.out.print("\nHow many hours do you study per week? ");
        int numberOfHours = keyboard.nextInt();
        keyboard.nextLine();

        System.out.println("Do you think maybe you should study "
            + 2 * numberOfHours + " hours per week?!!");
        System.out.print("Press Enter to continue ... ");
        keyboard.nextLine();
    }
}
