fork download
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5.  
  6. int input;
  7.  
  8. scanf("%d",&input);
  9.  
  10. printf("%d\n",input);
  11.  
  12.  
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 5292KB
stdin
1
stdout
1