xungeer29
#include<iostream>
using namespace std;
int main()
{
double x, y, z;
cout << "Enter x,y,z: " << endl;
cin >> x >> y >> z;
if (z == (x + y))
cout << x << "+" << y << "=" << z << endl;
else
cout << x << "+" << y << "!=" << z << endl;
return 0;
}