# Homework 16, challenge: Largest of three. # # Three numbers are declared below. Print the largest using only if, # elif, else, and the comparison operators. Do not use max(), loops, # or lists. Handle ties (two equal largest values are fine). # # Run with: python exercises/16/homework/04-largest-of-three.py a = 7 b = 12 c = 12 # Your code goes here: