dxnge

5

Oct 27th, 2021
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. for A in range(120*36*15+1, 1, -1):
  2.     if all( (120 % A == 0) and ((not(x % A == 0)) <= ((x % 36 == 0) <= (not(x % 15 == 0)))) for x in range(1, 120*36*15+1)):
  3.         print(A)
  4.         break
Advertisement
Add Comment
Please, Sign In to add comment