Run ID:87097
提交时间:2024-08-03 21:45:23
def min_num(a,b): c=min(a,b) return c a,b=map(int,input().split()) print(min_num(a,b))