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