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