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

int main() {
	constexpr const char foo[] = "blee";
	
	cout << foo;
	
	return 0;
}