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