fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int S, t, V;
  8. Console.Write ("ВВедите растояние");
  9. S = Convert.ToInt32 (Console.ReadLine ());
  10. Console.Write ("\nВВедите время");
  11. t = Convert.ToInt32 (Console.ReadLine ());
  12. V = S*t;
  13. Console.Write ("\nСкорость:" + V);
  14.  
  15.  
  16. }
  17. }
Success #stdin #stdout 0.03s 16052KB
stdin
100
2
stdout
ВВедите растояние
ВВедите время
Скорость:200