#include <iostream>

int main()
{
        int x = 0; 
        int y = 0; 
        int z = x && y++;
        std::cout << y << std::endl;

        x = 1; 
        z = x && y++;
        std::cout << y << std::endl;
}
