fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. #define el "\n"
  4. #define ll long long
  5. #define ull unsigned long long
  6. #define se second
  7. #define fi first
  8. #define be begin()
  9. #define en end()
  10. #define Faster cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0);
  11.  
  12. int main()
  13. {
  14. Faster;
  15. string s;
  16. cin >> s;
  17. for(auto &x : s)
  18. {
  19. if(isupper(x)) x = tolower(x);
  20. else if(islower(x)) x = toupper(x);
  21. else if(isdigit(x)) x = '_';
  22. else x = x;
  23. }
  24. cout << s;
  25. return 0;
  26. }
  27.  
  28.  
Success #stdin #stdout 0s 5280KB
stdin
a1B*
stdout
A_b*