The prob is: "Read 2 variables, named A and B and make the sum of these two variables, assigning its result to the variable X. Print X as shown below. Print endline after the result otherwise you will get “Presentation Error”."
int A = Console.Read();
int B = Console.Read();
int C = A + B;
Console.WriteLine("X = " + C + "\n");
I Thought it was as simple as that(cos in c++ is). I am ultimately wrong.