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

int main() {
	std::wstring ws(LR"del( !\"#$%&'()*+,-./0123456789:;<=>?)del" L"\n"
                    LR"del(@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_)del" L"\n"
                    LR"del(`abcdefghijklmnopqrstuvwxyz{|}~)del" L"\n");
    std::wcout << ws;
	return 0;
}