Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87694 张泽一 05求长方形的周长和面积 Python3 Accepted 42 MS 3764 KB 77 2024-08-11 10:49:04

Tests(10/10):


Code:

s=input().split() N=int(s[0]) M=int(s[1]) sb=(N+M)*2 ss=N*M print(sb,ss)