Advertisement
Alinchik

Untitled

Jul 22nd, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. a = []
  2. max = 1
  3. for i in range(1, 5001):
  4.     a.append(i)
  5.     if i > max and i % 39 == 0:
  6.         max = i
  7. print(max)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement