from math import floor def main(): v, t = input().split() v = float(v) t = int(t) print(floor(v*t)) if __name__ == "__main__": main()