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=1314520;
  8. b=5201314;
  9. printf("%ld/n",a);
  10. printf("%lld\n",b);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5316KB
stdin
3.1415926
stdout
1314520/n5201314