Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87097 丁俊杰 求两个数较小的数 Python3 Accepted 34 MS 3760 KB 102 2024-08-03 21:45:23

Tests(2/2):


Code:

def min_num(a,b): c=min(a,b) return c a,b=map(int,input().split()) print(min_num(a,b))