Advertisement
w31c0m32h311

cringe 14

Jun 17th, 2022
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. s = ''
  2. x = 6**1333 - 5*6**1215 + 3*6**144 - 86
  3. while(x>0):
  4.     s = str(x%6)+s
  5.     x = x//6
  6. print(s)
  7.  
  8. print(s.count('5'))
  9. print(s.count('4'))
  10. print(s.count('3'))
  11. print(s.count('2'))
  12. print(s.count('1'))
  13. k = 258*5 + 1*4 + 2*3 + 1*2 + 1*1
  14. print(k)
  15.  
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement