#include <iostream>

int main()
{
	if(int i = 23)
	{
		std::cout << i << std::endl;
		i -= 17;
		std::cout << i << std::endl;
	}
}
