using System;
public class Program
{
public static void Main()
Console.WriteLine("what is your fav animal");
String animal = Console.ReadLine();
Console.WriteLine("WOW I also love " + animal + " theyre the best!");
}