#include <iostream>
using namespace std;
int main() {
int A, B;
cin >> A;
cin >> B;
int X = A + B;
cout << "X" << " " << "=" << " "<< X << endl;
return 0;
}
#include <iostream>
using namespace std;
int main() {
int A, B, X;
cin >> A >> B;
X = A + B;
cout << "X = " << X << endl;
return 0;
}