Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128189 王均歌 08比较三个数大小II Python3 Wrong Answer 57 MS 3760 KB 119 2025-08-09 11:22:04

Tests(0/10):


Code:

a,b,c=input().split() a=int(a) b=int(b) c=int(c) if a<b: x=a else: x=b if x<c: y=x else: y=c


Run Info:

------Input------
69 90 74
------Answer-----
69
------Your output-----