dxnge

35

Dec 3rd, 2021
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. for A in range(1, 10000,):
  2.     if all((y+5*x < A) or (3*x+2*y > 81)for x in range(0, 1000) for y in range(0,1000)):
  3.         print(A)
  4.         break
  5.  
Advertisement
Add Comment
Please, Sign In to add comment