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