fork download
  1. using System;
  2. class program{
  3.  
  4. public static void Main(string [] arg){
  5. Console.Write("Enter Your name: " );
  6. string name = Console.ReadLine();
  7. Console.WriteLine("Hello my name is " + name);
  8.  
  9. Console.ReadLine();
  10.  
  11. }
  12. }
Success #stdin #stdout 0.04s 24000KB
stdin
Standard input is empty
stdout
Enter Your name: Hello my name is