#include <iostream> using namespace std; int main() { int p,c,s; cin >> p >> c >> s; if (p >= 0) { cout << p; } cout << c << s; return 0; }