fork download
  1. using System;
  2.  
  3. class Program{
  4.  
  5. public static void Main(string[] args){
  6.  
  7. Console.Write("enter your name: ");
  8. string name = Console.ReadLine();
  9.  
  10. Console.WriteLine("My name is: " + name);
  11. }
  12. }
Success #stdin #stdout 0.02s 28056KB
stdin
Standard input is empty
stdout
enter your name: My name is: