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