def solve(): v, t = map(float, input().split()) v *= 1000 vt = v * t print(int(vt) // 1000) if __name__ == '__main__': solve()