#include <iostream>
using namespace std;

int main() {
    long long x,y,z;
    char f,g;
    cin >>x>>f>>y>>g>>z;
    cout << x << " " << f << endl;
    cout << y << " " << g << endl;
    cout << z << " = " << endl;
	return 0;
}