fork download
  1. using System;
  2. namespace First_program
  3. {
  4. class Program
  5. {static void Main( )
  6. {
  7. int i = 1;
  8. while( i <= 10 )
  9. {
  10. Console.Write( i ) ;
  11. i++;
  12. }
  13. }
  14. }
  15. }
Success #stdin #stdout 0.02s 26152KB
stdin
Standard input is empty
stdout
12345678910