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