#include<isostream>
#include<iomanip>
using namespace std;

int main(){
    float length,width;
    cin>>length>>width;
    float area=length*width;
    cout<<fixed<<setprecision(2);
    cout<<"Area="<<area;
    return 0;
}