import java.util.Scanner; public class Main { public static void main(String[] args) { try (Scanner scan = new Scanner(System.in)) { float d = Float.parseFloat(scan.next()); int t = Integer.parseInt(scan.next()); System.out.format("%.0f", Math.floor(d*t)); } } }