#include <iostream> using namespace std; void main() { float x; float y; float z; cin>>x; cin>>y; z=x*y; cout<<"z"<<z<<endl; }