Advertisement
sunspeak

Untitled

Oct 21st, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include <stdio.h>
  2. #include<iostream>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7. string a;
  8. cin >> a;
  9. if (a=="GG")
  10. {
  11. cout << "FF";
  12. }
  13. else if(a == "SS")
  14. {
  15. int b;
  16. cin >> b;
  17. cout << a << b;
  18. }
  19.  
  20.  
  21.  
  22.  
  23. return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement