I'm just trying to do a simple arithmetic operation but it returns me the 0 value. Here's the code:
main(){
long Population_A, Population_B;
cin>>Population_A;
cin>>Population_B;
float Increase_A, Increase_B;
Increase_A = (6*Population_A)/100; //Here is the problem because I receive 0.
Increase_B = (3*Population_B)/100;
}//main