#include<iostream>
#include<cmath>
using namespace std;
int main() {
float x, y;
cin >> x;
if (x > 7) {
y = x - 3;
}
else if (x < -5) {
y = 4 * pow(x, 2);
else {
y = 5;
system("pause");
return 0;
#include<iostream>
#include<cmath>
using namespace std;
int main() {
float x, y;
cin >> x;
if (x > 7) {
y = x - 3;
}
else if (x < -5) {
y = 4 * pow(x, 2);
}
else {
y = 5;
}
system("pause");
return 0;
}