import java.util.Scanner;

class Jan14 {
	public static void main(String[] args){ 
		/*
			multi-line comment
		*/

		// variable declaration and assignment statement
		int age = 18;

		// Scanners are used to read data from the keyboard
		// or a file.

		// Scanner to read from keyboard
		Scanner kb = new Scanner(System.in);

		// ask user to enter an integer
		System.out.println("Please enter your age and then press enter");

		// read an integer from the keyboard and store in the variable age
		age = kb.nextInt();

		// print a string of character and concatenate the value in age
		System.out.println("Your age is " + age);
	}
}
