using System.Collections.Generic;
public static void Main()
var undoStack = new Stack<string>();
var redoStack = new Stack<string>();
var command = Console.ReadLine().Trim();
Console.WriteLine("undone");
Console.WriteLine("Nothing to undo");
Console.WriteLine("Redone");
Console.WriteLine("Nothing to redo");
Console.WriteLine("Text is now: " + text);