fork download
  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4.  
  5. int main() {
  6. int K, M;
  7. cin >> K >> M;
  8. cout << ((K^2) * M);
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5320KB
stdin
2 2
22
stdout
Standard output is empty