Advertisement
qekaqeka

5414 А - ПОЛЯКОВ

Apr 24th, 2023
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. mxs = 0
  2. for s in range(11, 100_000):
  3. if (s//3) //3 <= 10:
  4. mxs = max(s, mxs)
  5.  
  6. print(mxs)
  7.  
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement