#include <stdio.h>
int main()
{
    float l;
    float w;
    scanf("%f",&l);
    scanf("%f",&w);
    printf("%f %f",&l*&w);
    return 0;
}