AnnaVolkova

Untitled

Jul 13th, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. n=int(input())
  2. s=0
  3. for i in range(6):
  4. s+=n%10
  5. n//=10
  6. print(s)
Add Comment
Please, Sign In to add comment