Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90581 周楚航 05求长方形的周长和面积 Python3 Accepted 39 MS 3760 KB 67 2024-09-15 20:01:37

Tests(10/10):


Code:

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