#include <iostream>
using namespace std;
int main() {
float harga_satuan=10250.75;
float jumlah_beli=6;
float subtotal=harga_satuan * jumlah_beli;
float diskon=subtotal * 0.10;
float total=subtotal-diskon;
cout<<"---------------------------------------"<<endl;
printf("Program Penjualan Marshmallow Plain \n");
cout<<"---------------------------------------"<<endl;
printf("Harga satuan : Rp %5.2f \n",harga_satuan);
printf("Jumlah Beli : %.f \n",jumlah_beli);
cout<<"---------------------------------------"<<endl;
printf("Subtotal : Rp %.2f \n",subtotal);
printf("Diskon : Rp %.2f \n",diskon);
printf("Total : Rp %.2f \n",total);
//NAMA : Dhafin Shabir Alfatih
//NIM : 3420230036
return 0;
}