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