fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Console.WriteLine("Enter first number : ");
  8. double x = double.Parse(Console.ReadLine());
  9. Console.WriteLine("Enter second number : ");
  10. double y = double.Parse(Console.ReadLine());
  11. double z=x*y;
  12. Console.WriteLine("multiplication = {0} ", z);
  13. }
  14. }
  15.  
Success #stdin #stdout 0.06s 30220KB
stdin
5
7
stdout
Enter first number :  
Enter second number :  
multiplication = 35