unsigned long long a,b,c;
cin>>a>>b>>c;
cout<<(a*b*c);
Input given: 512 294967268 279632277 Output: 5337484673731225600
However, when I do 512 * 294967268 * 279632277
in Python, the output I get is:
42230972821150328832L
Why do I get a different answer?