namespace _NicholasInspirationalQuotes
public static void Main()
Console.WriteLine("Please enter your First Name: ");
firstName = Console.ReadLine();
Console.WriteLine("Welcome "+ firstName + "! Please enter a number from 1 to 15: ");
number = int.Parse(Console.ReadLine());
if ((number < 1) || (number > 15))
else if ((number >= 1) && (number <= 15))
Console.WriteLine("Nothing is impossible "+ firstName +". The word itself says I'm possible!");
Console.WriteLine("Try to be a rainbow in someone else's cloud "+ firstName +".");
Console.WriteLine("You do not find the happy life "+ firstName +". You make it.");
Console.WriteLine("The most wasted of days is one without laughter "+ firstName +".");
Console.WriteLine("Act as if what you do makes a difference "+ firstName +". It does.");
Console.WriteLine("Never bend your head "+ firstName +". Always hold it high. Look the world straight in the eye.");
Console.WriteLine("Life is like riding a bicycle "+ firstName +". To keep your balance, you must keep moving.");
Console.WriteLine("Believe you can "+ firstName +" and you're halfway there.");
Console.WriteLine("When you have a dream "+ firstName +", you've got to grab it and never let go.");
Console.WriteLine("No matter what you're going through, there's a light at the end of the tunnel "+ firstName +".");
Console.WriteLine("Limit your always and your nevers "+ firstName +".");
Console.WriteLine("You must do the things "+ firstName +" you think you cannot do.");
Console.WriteLine("It isn't where you came from "+ firstName +". It's where you're going that counts.");
Console.WriteLine("You get what you give "+ firstName +".");
Console.WriteLine("Happiness is not by chance "+ firstName +", but by choice.");
Console.WriteLine("How did you like the quote I provided you? Please respond by inputing Yes or No: ");
response = Console.ReadLine();
switch(response.ToLower())
Console.WriteLine("That's Wonderful. I'm glad you liked it!");
Console.WriteLine("Thanks for your feedback. I would find a better quote for you next time.");
Console.WriteLine("I did not understand the word you typed in.");
Console.WriteLine("Please come back again to get inspired!");