#!/usr/bin/python3 num = 42 num_type = 'even' if num % 2 == 0 else 'odd' print("{} is an {} number".format(num, num_type))