#include <iostream>
using namespace std;

int main() {
	int A, B, X;
	cin >> A >> B;
	X = A + B;
	cout << "X = " << X << endl;
	return 0;
}