fork download
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <cmath>
  4. #include <algorithm>
  5. #include <string>
  6. using namespace std;
  7. #define ll long long
  8. #define sz(x) int(size(x))
  9. void omar()
  10. {
  11. ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
  12. #ifndef ONLINE_JUDGE
  13. freopen("input.txt", "r", stdin), freopen("output.txt", "w", stdout);
  14. #endif
  15. }
  16.  
  17. int main()
  18. {
  19. omar();
  20. //////////////////////////////////////////////////////////////////////////////////////////
  21.  
  22. string s;
  23. while(cin>>s)
  24. {
  25. reverse(s.begin(), s.end());
  26. cout << s<<" ";
  27. }
  28.  
  29. return 0;
  30. }
  31.  
  32.  
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
Standard output is empty