import java.util.Scanner; public class N350 { public static void main(String[] args) { Scanner sc=new Scanner(System.in); double v=sc.nextDouble();int t=sc.nextInt(); int d=(int)Math.floor(v*t); System.out.println(d); } }