fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. char i;
  6. for(i=getchar();; i=getchar())
  7. if(i=='x')
  8. break;
  9. else putchar(i);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2296KB
stdin
vicky002x
stdout
vicky002