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