#include <bits/stdc++.h>
using namespace std;
int main (){
int a,b,c,d;
cin>>a>>b;
c=a*b;
d=(a+b)*2;
cout<<d<<endl<<c;
}
/**************************************************************
Problem: 1416
User: tonghuatao
Language: C++
Result: Accepted
Time:20 ms
Memory:2072 kb
****************************************************************/