import java.util.*;  // for Scanner

public class ProcessName {
	public static void main(String[] args) {
		Scanner console = new Scanner(System.in);
		System.out.println("Type your name: ");
		
		// your code goes here
		
		System.out.println("Your name is: " + name);
	}
}
