int main(void) {
    int a = 1;
    int b = 0;
    if (a)
        b = 1;
    return b;
}