#include <iostream>
#include <cstdio>
using namespace std;

int main() {
    float length, width;
    cin >> length>>width;
    printf("%2f", lenght*width);
    return 0;
}