public static void Main()
Console.WriteLine("Do you want to take a note (yes or no)");
String ja = Console.ReadLine();
Console.WriteLine("Write your first note!");
note1 = Console.ReadLine();
Console.WriteLine("Do you want to write another note? (yes or no)");
String nej = Console.ReadLine();
Console.WriteLine("Okey write your secont note!");
note2 = Console.ReadLine();
Console.WriteLine("Witch note do you want to see, note1 or note2?");
String NiceSvar = Console.ReadLine();
Console.WriteLine(note1);
Console.WriteLine(note2);
Console.WriteLine("Do you want to see your note? (yes or no)");
String supersvar = Console.ReadLine();
Console.WriteLine(note1);
Console.WriteLine("Well okey then");