This commit is contained in:
e2hang
2025-08-14 19:48:01 +08:00
parent 5ebd540fa5
commit f40ad1c843
6 changed files with 114 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#include <iostream>
#include <string>
using namespace std;
int main(){
string n;
cin >> n;
for(int i = 0; i < n.size(); i++){
}
return 0;
}