0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 22:05:24 +00:00
OI-codes/AcWing/609/609.cpp

13 lines
240 B
C++

#include <bits/stdc++.h>
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;
}