#include
using namespace std;
int main() {
double x;
cin>>x;
if((x==5)||(x==1)) { cout<
return 0;
}
//这个是根据Dev-C++写的,基本上适用所有的编辑器。
#include
using namespace std;
int main()
{
float x;
cin>>x;
cout<<"x-1 = "<< x-1 << endl;
cout<<"x*(x+2) = "<< x*(x+2) << endl;
cout<<"x*2 = "<< x*2 << endl;
system("pause");
return 0;
}