開啟章節選單

483 Word Scramble

#include <bits/stdc++.h>
using namespace std;

#define pb push_back
#define fi first
#define se second
#define INF LONG_LONG_MAX/1000
#define WA() cin.tie(0)->sync_with_stdio(0)
#define all(x) (x).begin(), (x).end()
#define int long long
#define PII pair<int, int>

signed main() { WA();
    string s;
    while (getline(cin, s)) {
        stringstream ss(s);
        while (ss >> s) {
            cout << string(s.rbegin(), s.rend());
            if (ss.peek() != EOF) cout << ' ';
        }
        cout << '\n';
    }
}