dxnge

19

Dec 6th, 2021
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. x = (7**(9**2-1) - (10-3)**4) * 5/6 * 8
  2. cnt = 0
  3. while x > 0:
  4.     if x % 7 == 4:
  5.         cnt += 1
  6.     x //= 7
  7. print(cnt)
  8.  
Advertisement
Add Comment
Please, Sign In to add comment