#!/usr/bin/env python3 def min2(x, y): if x < y: return x else: return y def min3(x, y, z): return min2(min2(x, y), z)