fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int i = 20;
  8.  
  9. while (i % 2 != 0 || i % 3 != 0 || i % 4 != 0 || i % 5 != 0 ||
  10. i % 6 != 0 || i % 7 != 0 || i % 8 != 0 || i % 9 != 0 ||
  11. i % 10 != 0 || i % 11 != 0 || i % 12 != 0 || i % 13 != 0 ||
  12. i % 14 != 0 || i % 15 != 0 || i % 16 != 0 || i % 17 != 0 ||
  13. i % 18 != 0 || i % 19 != 0 || i % 20 != 0) {
  14. i += 20;
  15. }
  16. }
  17. }
Success #stdin #stdout 0.06s 29016KB
stdin
Standard input is empty
stdout
Standard output is empty