Young and beautiful

Report a typo

Read the input three times. Each one contains the age of a person – Jack's, Alex's, and Lana's. Find the youngest one among them and print this person's age.

Sample Input 1:

23
42
34

Sample Output 1:

23
Write a program in Python 3
jack_age = int(input())
alex_age = int(input())
lana_age = int(input())
___

Create a free account to access the full topic