fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. // your code goes here
  8. }
  9. }
Success #stdin #stdout 0.02s 21776KB
stdin
int x , y ;
            Console.Write(" Enter First Number : ");
            while(!int.TryParse(Console.ReadLine() , out x))
            {
                Console.WriteLine("Please! Enter Number :");
            }
            Console.Write(" Enter Second Number : ");
            while(!int.TryParse(Console.ReadLine() , out y))
            {
                Console.WriteLine("Please! Enter Number :");
            }
            int mul = x * y ;
            Console.WriteLine($" MUL = {mul}");
stdout
Standard output is empty