#include<bits/stdc++.h;
using namespace std;
int main(){
	float d;
	int s,h;
	scanf("%f %d",&d,&s);
	h=d*s;
	printf("%.2f %d %d",d,s,h);
	
}

/**************************************************************
	Problem: 1703
	User: zhengzihao3
	Language: C++
	Result: Compile Error
****************************************************************/