fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a;
  6. cin>>a;
  7.  
  8. int b = a*a*a;
  9. cout<< b;
  10. return 0;
  11. }
Success #stdin #stdout 0s 5296KB
stdin
8
stdout
512