Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
93061 许诺 05求长方形的周长和面积 Python3 Wrong Answer 40 MS 3752 KB 298 2024-10-07 17:08:45

Tests(0/10):


Code:

a=input().split() b=a[0] c=a[1] b=int(b) c=int(c) print(b*c,(c+b)*2)


Run Info:

------Input------
44 56
------Answer-----
200 2464
------Your output-----
2464 200