1.) C++
#include <cstdlib>2.) RAPTOR
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{int x,y,z;
x=20000;y=5500;
z=x-(3*y);
cout<<"UANG DARI IBU : Rp."<<x<<"\n";
cout<<"ADEK MEMBELI 3 Kg BERAS DENGAN HARGA Rp."<<y<<" per Kg \n";
cout<<"UANG KEMBALIAN : Rp.";
cout<<z<<endl;
system("PAUSE");
return EXIT_SUCCESS;
}