Run ID:91783
提交时间:2024-09-22 15:01:08
#include<iostream> using namespace std; int main(){ double C,F,D; cin>>C>>F; D=C*F; cout<<D<<endl; return 0; }