import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		double x = sc.nextFloat();
		int y = sc.nextInt();
		System.out.println(String.format("%.2f", x)+" "+y+" "+(int)(x*y));
		
	}

}
/**************************************************************
	Problem: 1703
	User: admin
	Language: Java
	Result: Accepted
	Time:543 ms
	Memory:42760 kb
****************************************************************/