private const string Arg0 = " higher";
private const string Arg1 = " lower";
public static void Main()
Console.WriteLine("user one give they name: ");
string name1 = Console.ReadLine();
Console.WriteLine("user two give they name: ");
string name2 = Console.ReadLine();
Console.WriteLine(name1 + " on a scale of 1\\10 how would you rate " + name2);
int rating1 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine(name2 + " on a scale of 1\\10 how would you rate " + name1);
int rating2 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("The rating matches");
else if (rating1 >= rating2) ;
Console.WriteLine(name1 + " rates " + name2 + Arg0);
Console.WriteLine(name2 + " rates " + name1 + Arg1);