Josif_tepe

Untitled

Jan 31st, 2026
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. int main() {
  5.     string s;
  6.     cin >> s;
  7.    
  8.     cout << s.length() << endl;
  9.    
  10.     for(int i = 0; i < s.length(); i++) {
  11.         cout << s[i] << " ";
  12.     }
  13.    
  14.     return 0;
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment