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