fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int x;
  7. cin>>x;
  8. cout<<"C";
  9. for(int i=0; i<x; i++)
  10. cout<<"+";
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5276KB
stdin
6
stdout
C++++++