#/usr/bin/env python3 #coding=utf-8 import re s = input('请输入10个整数以空格隔开: ') nums = [int(i) for i in re.findall(r'\d+', s)] print(min(nums))