Instruction
Great, let's add some conditional statements now.
Exercise
Ask the user for integer a, b, and c and print the smallest of them.
Stuck? Here's a hint!
There are a few ways to solve this challenge with if statements, but it's easiest to start with:
if a < b and a < c:



