#include <iostream>
#include <iomanip>
using namespace std;
int main() {
    //Nama: moh. hamda khoiro afwa
    //NiM : 33420230022
    // Deklarasi variabel
    double hargaSatuan = 10250.75;
    int jumlahBeli = 6;
    double subtotal, diskon, total;
    
    // Hitung subtotal
    subtotal = hargaSatuan * jumlahBeli;
    // Hitung diskon (10% dari subtotal)
    diskon = subtotal * 0.10;
    // Hitung total setelah diskon
    total = subtotal - diskon;
    // Tampilkan hasil
    cout << "-----------------------------------------" << endl;
    cout << "Program Penjualan Marshmallow Plain" << endl;
    cout << "-----------------------------------------" << endl;
    cout << "Harga Satuan  : Rp " << fixed << setprecision(2) << hargaSatuan << endl;
    cout << "Jumlah Beli   : " << jumlahBeli << endl;
    cout << "-----------------------------------------"<< endl;
    cout << "Subtotal      : Rp " << fixed << setprecision(2) << subtotal << endl;
    cout << "Diskon 10 Persen : Rp " << fixed << setprecision(2) << diskon << endl;
    cout << "Total         : Rp " << fixed << setprecision(2) << total << endl;
    cout << "-----------------------------------------" << endl;
    return 0;
}