using System;
public class Program
{
public static void Main()
Console.WriteLine("Give me a string");
/*
String test = Console.ReadLine();
Console.WriteLine("what word do you want replaced?");
string rep = Console.ReadLine();
Console.WriteLine("What do you want it replaced with?");
string rep2 = Console.ReadLine();
String t = test.Replace(rep,rep2);
Console.WriteLine(t);
*/
Console.WriteLine("Give me a string with a lot of spaces");
string spaces = Console.ReadLine();
Console.WriteLine(spaces.Trim());
}