fork download
  1. #include<bits/stdc++.h>
  2. using namespace std ;
  3. int main(){
  4. string ar ;
  5. int j = 0 ;
  6. while (getline(cin,ar)){
  7. for (int i = 0 ; i < ar.length() ; i ++) {
  8. if (ar[i] == '"'){
  9. j ++ ;
  10. if (j % 2 == 1)
  11. cout << "``" ;
  12. else cout << "''" ;
  13. }
  14. else cout << ar[i] ;
  15.  
  16. }
  17. cout << endl ;
  18. }
  19. }
  20.  
Success #stdin #stdout 0s 15240KB
stdin
Is branched in ""my up strictly "remember. "
Songs but chief has ham widow downs. Genius or so up vanity cannot. 
stdout
Is branched in ``''my up strictly ``remember. ''
Songs but chief has ham widow downs. Genius or so up vanity cannot.