Untitled

Anonymous
c_cpp
10/13/2023 8:57 PM
200 B
18
Indexable
#include <iostream>
#include <string>
using namespace std;

int main() {
    int A;
    cin >> A;
    cout << to_string(A).length();
}
    
Editor is loading...