fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. long int a;
  6. long long int b;
  7. a = 2222222222;
  8. b = 444444444444;
  9. printf("%ld\n",a);
  10. printf("%ld\n",b);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
2222222222
444444444444