L1-051 打折 分数 5

// 1'16"
#include <bits/stdc++.h>
using namespace std;
int main()
{
    double a, b;
    cin >> a >> b;
    b /= 10;
    cout << fixed << setprecision(2) << a * b;
    return 0;
}
posted @ 2024-08-05 23:07  Frodnx  阅读(14)  评论(0)    收藏  举报