#include <iostream>

#include <string>


using namespace std;


int main() {

  long long a;

  int b=500000, c=500000;

  a = b*c;

  cout << a;

}


이거 b, c를 int로 했을 때, 제대로 연산 안되던데 이유가 뭐야??

*의 내부 작동 원리를 모르겠어