0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2021-08-02 18:40:17 +08:00 committed by Baoshuo Ren
parent cc3f457314
commit 33369cf3dc
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

14
AcWing/775/775.cpp Normal file
View File

@ -0,0 +1,14 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
string s;
vector<string> c;
while (cin >> s) c.push_back(s);
reverse(c.begin(), c.end());
for (auto i : c) {
cout << i << ' ';
}
return 0;
}