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