import java.util.Scanner;
public class PrintBirthday
{
public static void main(String[] args)
{
Scanner stdIn = new Scanner(System.in);
String month; // birthday month
double day; // birth day
double year; //birth year
double oldyear = 0; //year turning 100
System.out.print(
"Enter the month you were born: ");
month = stdIn.next();
System.out.print(
"Enter the day you were born: ");
day = stdIn.nextDouble();
System.out.print(
"Enter the year you were born: ");
year = stdIn.nextDouble();
oldyear += year+100;
System.out.println("You will be 100 on " +
month() + day() + oldyear(0));
} // end main
} // end class PrintBirthday