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