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