← Back to List
27257번: Любитель нулей ↗
Solutions
Python 3
73 B | 73 chars
a = int(input()) while a % 10 == 0: a //= 10 print(str(a).count('0'))