Advertisement
NIKOLAY_TETUS

Untitled

Jun 14th, 2021
628
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. val = 5 ** 20 + 5 ** 10 - 5 ** 13 - 5 ** 3
  2. print (val)
  3.  
  4. score = 0
  5.  
  6. while val > 0:
  7.     val /= 5
  8.     score = score + 1
  9.  
  10. print(score)
  11.    
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement