Advertisement
LilChicha174

Untitled

Mar 28th, 2022
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. # 13362
  2. a = 125 + 25 ** 3 + 5 ** 9
  3. kl = 0
  4. while a != 0:
  5.     if a % 5 == 0:
  6.         kl += 1
  7.     a = a // 5
  8. print(kl)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement