Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
91707 | 徐梓涵 | 05求长方形的周长和面积 | Python3 | Wrong Answer | 37 MS | 3760 KB | 81 | 2024-09-22 13:16:30 |
s=input().split() a=s[0] b=s[1] a=int(a) b=int(b) print(a*b) print((a+b)*2)
------Input------
44 56
------Answer-----
200 2464
------Your output-----
2464 200