#include <iostream>
using namespace std;
int main() {
    int a, b,c;
    cin>>a>>b>>c;
     cout << 2*(a*b+a*c+c*b) << endl;
     cout<<a*b*c;
}