fork download
  1. #include <iostream>
  2. #include <cmath>
  3.  
  4. using namespace std;
  5.  
  6. typedef long long ll;
  7.  
  8. ll pow(ll a, ll b) {
  9. return 0;
  10. }
  11.  
  12. int main()
  13. {
  14. ll a = pow(2, 16),
  15. b = pow(2LL, 16),
  16. c = pow(2, 16LL),
  17. d = pow(2LL, 16LL);
  18.  
  19. cout << a << " " << b << " " << c << " " << d << endl;
  20. }
  21.  
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
65536 65536 65536 0