def solve(): v, t = map(float, input().split()) print(int(v * t + 1e-9)) if __name__ == '__main__': solve()