fork(9) download
  1. #include <iostream>
  2. #include <cstdio>
  3. using namespace std;
  4.  
  5. int main() {
  6. long long a, b, c;
  7. a = 1, b = 3, c = 5;
  8. printf("%I64d %I64d %I64d\n", a, b, c);
  9. puts("*****************");
  10.  
  11. printf("%I64d ", a);
  12. printf("%I64d ", b);
  13. printf("%I64d ", c);
  14. puts("");
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
                                                               1                                                                0                                                                3
*****************
                                                               1                                                                3                                                                5