Advertisement
Krefeld187

Untitled

Dec 18th, 2020
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. def res1():
  2. res = 0
  3. a = 20
  4. while(res == 0):
  5. if(a % 2 == 0 and a % 3 == 0 and a % 4 == 0 and a % 5 == 0 and a % 6 == 0 and a % 7 == 0 and a % 8 == 0 and a % 9 == 0 and a % 10 == 0 and a % 11 == 0 and a % 12 == 0 and a % 13 == 0 and a % 14 == 0 and a % 15 == 0 and a % 16 == 0 and a % 17 == 0 and a % 18 == 0 and a % 19 == 0 and a % 20 == 0):
  6. res = a
  7. a+= 1
  8. return res
  9. k = res1()
  10. print(k)
  11.  
  12.  
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement