Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1763 邓小龙 05求长方形的周长和面积 C++ Accepted 0 MS 268 KB 148 2023-11-05 09:42:57

Tests(10/10):


Code:

# include<iostream> using namespace std; int main(){ int N,M; scanf("%d%d",&N,&M); printf("%d %d",2*(N+M),N*M); return 0; }