Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
106290 彭士宝 07交换数据II Python3 Accepted 38 MS 3756 KB 159 2025-01-15 21:19:52

Tests(10/10):


Code:

def swap_if_greater(a, b): if a > b: return b, a else: return a, b a, b = map(int, input().split()) print(*swap_if_greater(a, b))