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