Module: (Python) Subroutines: Procedures and Functions - 2


Problem

6/8

Minimum of two numbers

Problem

Write a function that calculates the minimum of two numbers. Using this function, write a function that finds the minimum of three numbers.
Input: The input string contains three space-separated integers.
Output: The program should print the minimum of the given numbers.
Examples
# Input Output
1 1 2 3 1