fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. printf("%d %lld %d\n",11111111,100LL,11111111);
  6. printf("%d %lld %d\n",11111111,100 ,11111111);//ОЙ!
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
11111111 100 11111111
11111111 100 11111111