#include <iostream>
#include <iomanip>
using namespace std;

int main() {
	// your code goes here
	float a, b, c;
	cin>>a>>b>>c;
	cout<<"NUMBER = "<<a<<endl<<fixed<<setprecision(2)<<"SALARY = U$ "<<b*c<<endl;
	return 0;
}