fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. printf("Hello, World!\n");
  5. int n ;
  6. scanf("%d",&n);
  7. printf("%d",n);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5292KB
stdin
45
stdout
Hello, World!
45