#include<bits/stdc++.h>
using namespace std;
int main()
{
	int x;
	double y;
	cin>>y>>x;
	cout<<fixed<<setprecision(2)<<y<<" "<<x<<" "<<(int)(x*y);
	return 0;
}
/**************************************************************
	Problem: 1703
	User: huanghao
	Language: C++
	Result: Accepted
	Time:3 ms
	Memory:2072 kb
****************************************************************/