fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int num1;
  6.  
  7. printf("Enter the input value :");
  8. scanf("%d", &num1);
  9.  
  10. printf("The input value is :%d", num1);
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 5312KB
stdin
1624
stdout
Enter their input value : The input value is :32764