// X179 Employee Class Java 			*/
// Prof. Bam 		Corrales			*/
//***************************************/

import java.util.Scanner;          //Loads the Scanner utility

public class x179emp1

{

	public static void main(String[] args)
	{


 		String name, department, position;
	    int idnumber;

		Scanner Entry = new Scanner(System.in);

		System.out.print("Employee name? ");
		name = Entry.nextLine();

		System.out.print("What field of department do you work in? ");
		department = Entry.nextLine();



		System.out.print("What position do you work in? ");
		position = Entry.nextLine();



		System.out.print("Employee number? ");
		idnumber = Entry.nextInt();

		System.out.println(name + " " + department + " " + position + " " + idnumber);

	}
}