Bài 4.1. Đếm số lượng chữ số của n


Submit solution

Points: 1
Time limit: 1.0s
Memory limit: 674M

Author:
Problem type

Nhập vào số nguyên n (0<=n<=10^18). Đếm số lượng chữ số của n là số nguyên.

Ví Dụ

Input

123432132

Output

9

Comments


  • 0
    EchVaVit  commented on May 1, 2025, 10:24 a.m.

    .lua

    local any = io.read()
    io.write(#any)