#include using namespace std; int main() { int a, b; double c; cin >> a >> b >> c; cout << "NUMBER = " << a << endl; cout << "SALARY = U$ " << fixed << setprecision(2) << b * c << endl; return 0; }