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