#!/usr/bin/env python3 # Copyright 2009-2017 BHG http://bw.org/ x = 42 y = 73 if x < y: print('comparison is true') else: print('comparison is false')