Untitled

Anonymous
c_cpp
10/15/2023 9:30 AM
216 B
13
Indexable
#include <iostream>
#include <string>
#include <cmath>
using namespace std;


int main() {

	string a;
	cin >> a;
	int l = a.length();
	cout << l;

}
Editor is loading...