Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
97001 | 王泽洋 | [在线测评解答教程] A+B Problem | Python3 | Wrong Answer | 34 MS | 3724 KB | 114 | 2024-11-10 10:26:41 |
a = int(input("请输入一个数")) b = int(input("请输入另一个数")) if 0<=a and b<=100: print(a+b)
------Input------
87 93
------Answer-----
180
------Your output-----