#include <iostream> using namespace std; int main() { int N,M; cin>>N>>M; cout<<(N+M)*2<<" "<<N*M<<endl; return 0; }