fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. int number;
  6. cin >> number;
  7. stringstream ss;
  8. ss << number;
  9. string s = ss.str();
  10. cout << s + " jeee!" << endl;
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 15240KB
stdin
123654
stdout
123654 jeee!