#include<bits/stdc++.h>
using namespace std;
int main(){
	float x;
	int y,z=0;
	cin>>x>>y;
	z=x*y;
	printf("%.2f %d %d",x,y,z);
}
/**************************************************************
	Problem: 1703
	User: xiaojingxuan
	Language: C++
	Result: Accepted
	Time:3 ms
	Memory:2072 kb
****************************************************************/