0
How to make two integer input?
Like int x= Convert.ToInt32(Console.ReadLine()); int y= Convert.ToInt32(Console.ReadLine()); Console.WriteLine(x-y); }
1 Resposta
+ 2
Add a Thread.Sleep(5000) after the `int x= Convert.ToInt32(Console.ReadLine());` , and place it into the IDE, and it should work. Sololearn's compiler/IDE doesn't support multiple inputs.