fork download
  1. //Bai 8
  2.  
  3. #include<bits/stdc++.h>
  4. using namespace std;
  5. #define el "\n"
  6. #define ll long long
  7. #define ull unsigned long long
  8. #define se second
  9. #define fi first
  10. #define be begin()
  11. #define en end()
  12. #define Faster cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0);
  13.  
  14. void Run(char x)
  15. {
  16. if(x >= 'A' && x <='Z')
  17. {
  18. cout << "NO";
  19. }
  20. else
  21. {
  22. cout << char(x - abs('A' - 'a') + 2);
  23. }
  24. }
  25. int main()
  26. {
  27. Faster;
  28. char x; cin >> x;
  29. Run(x);
  30. return 0;
  31. }
  32.  
  33.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout