fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main(string[] args)
  6. {
  7. string nombre;
  8. Console.WriteLine("¿Como te llamas?");
  9. nombre=Console.ReadLine();
  10. Console.WriteLine("Bienvenida " + nombre);
  11. Console.ReadLine();
  12. }
  13. }
  14.  
Success #stdin #stdout 0.05s 30648KB
stdin
Standard input is empty
stdout
¿Como te llamas?
Bienvenida