-
Hajipur, Bihar, 844101
Sharpen your programming skills by solving a new Java coding problem everyday!
CodePractice
12
To unlock the official solution code and explanation, you must successfully solve today's challenge or wait for today's challenge to end.
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.next();
System.out.print(str.length());
}
}