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

Copy
123432132

Output

Copy
9

Comments


  • 0
    EchVaVit  commented 33 days ago

    .lua

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