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