Advertisement
Eshendo

Untitled

Apr 29th, 2020
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. x = int(input())
  2. L = 0
  3. M = 0
  4. while x > 0:
  5.     L += 1
  6.     if x % 2 == 0:
  7.         M = M + (x % 10) // 2
  8.     x = x // 10
  9. print(L)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement