#include <stdio.h>
int main() {
    float length, width;
    float area = length* width;
    printf("%.2f\n",float area);
    return 0;
}