import java.io.*;
import java.util.Scanner;  // Import the Scanner class
/**
 * A computer program that asks the user for their name and the year they were born and prints out their age
 * 1)Ask the user when they were born
 * 2)Print out when they were born
 * 3)Print out how old they are WITHOUT asking them
 * CHALLENGE
 * C1)Check the user has an real birth year
 * C2)Check the person has a real name
 * @author (your name)
 * @version (a version number or a date)
 */
public class NameAge{
    public void main(){
        //YOUR CODE HERE
    }
}
