# coding: utf-8 #yuki_350 import math v,t=raw_input().split() v=float(v) t=int(t) mul=v*t+0.00001 res=math.floor(mul) print "%.0f" % res