fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. var s = Console.ReadLine();
  8. var m = s.Split(' ');
  9. var a = Convert.ToInt32(m[0]);
  10. var b = Convert.ToInt32(m[1]);
  11. var c = Convert.ToInt32(m[2]);
  12. Console.WriteLine($"Вы ввели {a} {b} {c}");
  13. }
  14. }
Success #stdin #stdout 0.03s 16384KB
stdin
11 23 68
stdout
Вы ввели 11 23 68