Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91238 余睿毅 05求长方形的周长和面积 Python3 Accepted 37 MS 3760 KB 63 2024-09-21 13:47:34

Tests(10/10):


Code:

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