String Length

EASY · C · 2000ms

A visitor wants to know how many characters they typed into the kiosk's search box before hitting enter — Rina's kiosk should report the length instantly. Read a line of text (no spaces) and print its length.

Input

One string S of lowercase letters.

Output

An integer: length of S.

Constraints

1 ≤ |S| ≤ 1000

Sample Input

hello

Sample Output

5
main.c
Loading editor…

Write C, then Run (custom I/O) or Submit (sample tests). ⌘/Ctrl+Enter submits.

String Length · DIU ContestHub