#include <iostream>

#define is_less_than <

#define and &

using namespace std;


int main()

{

int one_thousand = (1000);

int one_hundred = { 100 };

int eleven_hundred = one_thousand and one_hundred;

std::cout << eleven_hundred << std::endl;

std::cout << (one_hundred is_less_than one_thousand) << std::endl;

return 0;

}



출력하면




이걸 원한건가? 출제자의 의도가 파악이 어렵다