using System;
public class Program
{
public static void Main()
//declare variables for name and time
String name = "";
String time = "";
//ask user for their name and time
Console.WriteLine("Enter your name: ");
name = Console.ReadLine();
Console.WriteLine("Enter the time you woke up today: ");
time = Console.ReadLine();
//display name and time
Console.WriteLine(name + " woke up today at " + time + "!");
Console.ReadLine();
}