سلام

من تو برنامه نویسی C#‎‎‎‎‎‎‎ مبتدی هستم لطفا خیلی ساده راهنماییم کنید تا متوجه بشم

من میخوام برنامه دو متغیر s1 و s2 رو از ورودی بگیره و چهار عملی اصلی رو روی اون عدد انجام و نمایش بده.

اشکال من اینجاست که نمیدونم با چه دستوری s1 و s2 رو توی x و y قرار بدم:

از سطر 13 تا 28 واسه x , y ارور میده


class Program
{
static void Main(string[] args)
{
string s1, s2;
Console.WriteLine("Please");
Console.WriteLine("number1 is :");
s1 = Console.ReadLine();
Console.WriteLine("number2 is :");
s2 = Console.ReadLine();


Console.WriteLine("{0} , {1}", x.ToString(), y.ToString());

operation operation1 = new operation();
Console.WriteLine(" + " + operation1.sum(x, y));


operation operation2 = new operation();
Console.WriteLine(" - " + operation2.sub(x, y));


operation operation3 = new operation();
Console.WriteLine(" * " + operation3.mul(x, y));


operation operation4 = new operation();
Console.WriteLine(" / " + operation4.div(x, y));


Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}


public class operation
{
public float sum(float a, float b)
{
return a + b;
}
public float sub(float a, float b)
{
return a - b;
}
public float mul(float a, float b)
{
return a * b;
}
public float div(float a, float b)
{
return a / b;
}
}