Run ID:4092
提交时间:2024-07-31 16:27:55
#include<iostream> using namespace std; int main(){ int n,m; cin>>n>>m; cout<<(n+m)*2<<" "<<n*m; return 0; }