fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int khanghi(int n){
  4. n * n;
  5. return n * n;
  6. }
  7. int main(){
  8. int n;
  9. cin >> n;
  10. cout << khanghi(n);
  11. }
  12.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
1073610756