Untitled
unknown
java
a year ago
215 B
20
Indexable
import java.util.Scanner;
public class P1 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
System.out.println((int) Math.log10(n) + 1);
}
}Editor is loading...
Leave a Comment