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