#include <stdio.h>

struct Suck {
    enum {Suck1 = 0, Suck2 = 1};
};

int s = Suck::Suck1;

int main()
{
    printf("%d\n", s);
    return 0;
}
