Online Judge
Toggle navigation
C++题库系统 OJ
首页
问题列表
状态
排行榜
登录
首页
状态
128388
Run ID
作者
问题
语言
测评结果
Time
Memory
代码长度
提交时间
128388
王均歌
输出较大的数
Python3
Accepted
54 MS
3764 KB
114
2025-08-16 10:40:28
Tests(1/1):
Code:
a=input().split(",") b=int(a[0]) c=int(a[1]) if b>c: print("max="+str(b)) else: print("max="+str(c))