fork download
  1. // problem A
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. int main() {
  6. int n;
  7. cin >> n;
  8. cout << n * n;
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5292KB
stdin
6
stdout
36