using namespace std; int main() {int a,b; double X,Y; cin>>a>>b>>X; Y=b*X; printf(“NUMBER = %d\nSALARY = U$ %.2lf”,a,Y); return 0; }