#include<cstdio> using namespace std; int main() { int Wno,Wtime; float Wsalary; scanf("%d\n%d\n%f\n",&Wno,&Wtime,&Wsalary); printf("NUMBER = %d\nSALARY = U$ %.2f\n",Wno,Wtime*Wsalary); return 0; }