Advertisement
Josif_tepe

Untitled

May 18th, 2024
420
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 1 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main() {
  4.     string s;
  5.     cin >> s;
  6.    
  7.     for(int i = 0; i < s.size(); i++) {
  8.         cout << s[i] << " ";
  9.     }
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement