fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. char s[50];
  6.  
  7. // reading string
  8. scanf("%s",s);
  9. printf("%s",s);
  10.  
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 4524KB
stdin
helelo wprld
stdout
helelo