#include <iostream>
#include <string>
using namespace std;

int main() {
	std::string str(NULL);
	cout << '{' << str << '}' << endl;
	return 0;
}