# -*- coding: utf-8 -*- """ Created on Mon Jun 10 22:49:06 2019 @author: finnh """ x = -10 y = 0 if (x > y): print('(x > y) =', (x > y)) print('The If branch is active.') print('This is the first code line after the if structure.')