Make a program where it is asked from the user to enter the total amount, you have to answer
how much ZAKAT is to be paid on that amount. ZAKAT is 2.5% of the total amount.
#include <iostream> // Preprogressive Directive
using namespace std; // Global Identifier
int main() // Main Fuction
{
int totalAmount;
cout<<"Enter Total Amout : ";
cin>>totalAmount;
cout<<"You have to pay 2.5 Percent of Zakat : "
<<totalAmount*2.5/100;
return 0;
}