#include <iostream>
using namespace std;

#define intgr 12
#define bnry 0b00000001
#define hex 0x0A
#define str "Hello World"

#define STRING(x) #x
#define STRINGIZE(x) STRING(x)

int main(void) {
	string str_intgr = STRINGIZE(intgr);
	string str_bnry = STRINGIZE(bnry);
	string str_hex = STRINGIZE(hex);
	string str_str = STRINGIZE(str);
	
	cout << str_intgr << endl;
	cout << str_bnry << endl;
	cout << str_hex << endl;
	cout << str_str << endl;
	
	return 0;
}
