public static void Main()
Console.WriteLine("what is the name of our school ?");
var anwser1=Console.ReadLine();
if ( anwser1 == "hartismere" ) Console.WriteLine( "Correct!" );
if ( anwser1 != "hartismere" ) Console.WriteLine( "wrong !") ;
Console.WriteLine("what is my favourite food ?");
var anwser2=Console.ReadLine();
if ( anwser2 == "crisps" ) Console.WriteLine( "Correct!" );
if ( anwser2 != "crisps" ) Console.WriteLine( "wrong !") ;
Console.WriteLine("what is my favourite colour ?");
var anwser3=Console.ReadLine();
if ( anwser3 == "blue" ) Console.WriteLine( "Correct!" );
if ( anwser != "blue" ) Console.WriteLine( "wrong !") ;
Console.WriteLine("what is my least favourite food ?");
var anwser4=Console.ReadLine();
if ( anwser4 == "fish" ) Console.WriteLine( "Correct!" );
if ( anwser4 != "fish" ) Console.WriteLine( "wrong !") ;