#include <iostream>
#define TWO 2
using namespace std;
struct foo { enum { ONE, TWO };};
main() { cout << foo::TWO << endl; }

