fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. long long a;
  8.  
  9. a = 50000L * 50000L;
  10.  
  11. printf("a の値は %d です\n", a);
  12. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
a の値は -1794967296 です