# -*- coding: utf-8 -*- """ Created on Sun Aug 25 22:57:49 2019 @author: Finn Haugen """ x = 0 y = 0 if (x > y): print('if branch is active.') elif (x == y): print('elif branch is active.') else: print('else branch is active.') print('This is the first code line after the if structure.')