fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4. int x;
  5. cin >> x ;
  6. cout << (x*x*4)-(3*x)+5;
  7. return 0;
  8. }
Success #stdin #stdout 0s 5292KB
stdin
-2
stdout
27