Online Judge
Toggle navigation
C++题库系统 OJ
首页
问题列表
状态
排行榜
登录
首页
状态
71453
Run ID
作者
问题
语言
测评结果
Time
Memory
代码长度
提交时间
71453
胡海峰老师
求两个数较大的数
Python3
Accepted
34 MS
3740 KB
133
2024-04-24 12:04:00
Tests(2/2):
Code:
a,b = map(int,input().split()) def print_max(x,y): if x>y: print(x) else: print(y) print_max(a,b)