#include <iostream>
#include <string>
#include <limits>
int main()
{
std::string line;
// Ignore the rest of the line.
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
getline(std::cin,line);
std::cout << line << std::endl;
return 0;
}
I2luY2x1ZGUgPGlvc3RyZWFtPgojaW5jbHVkZSA8c3RyaW5nPgojaW5jbHVkZSA8bGltaXRzPgoKaW50IG1haW4oKQp7CiAgIHN0ZDo6c3RyaW5nIGxpbmU7CgogICAvLyBJZ25vcmUgdGhlIHJlc3Qgb2YgdGhlIGxpbmUuCiAgIHN0ZDo6Y2luLmlnbm9yZShzdGQ6Om51bWVyaWNfbGltaXRzPHN0ZDo6c3RyZWFtc2l6ZT46Om1heCgpLCAnXG4nKTsKCiAgIGdldGxpbmUoc3RkOjpjaW4sbGluZSk7CiAgIHN0ZDo6Y291dCA8PCBsaW5lIDw8IHN0ZDo6ZW5kbDsKCiAgIHJldHVybiAwOwp9Cg==