fork download
  1. using System;
  2.  
  3. namespace Enum
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. string s = "7 300685 1235 200017 200018 200019";
  10. var array = s.Split(null);
  11. foreach (var item in array)
  12. {
  13. Console.WriteLine(item);
  14. }
  15. }
  16. }
  17. }
Success #stdin #stdout 0.03s 28256KB
stdin
Standard input is empty
stdout
7






300685

1235



200017

200018

200019