#12392: C++ 很简单


swsamuel (世外唐悦)


#include <iostream>
using namespace std;
int h,w;
int main()
{
  while(cin>>h>>w) cout<<2*h+2*w<<endl;
  return 0;
}
代码如上;
不难;
AC的,没错。