#include<iostream>
using namespace std;
int main(){
int a;
int price;
int Novel_net_price;
int estimated_sold;
cout<<"per novel price=";
cin>>price;
cout<<"Entimated novel copy sold=";
cin>>estimated_sold;
cout<<"Enter 1 for First Option And 2 for Second Option 3 for Third option:";
cin>>a;
switch(a){
case 1:
cout<<endl;
break;
case 2:
Novel_net_price=price*0.125;
cout<<Novel_net_price;
break;
case 3:
if(estimated_sold<=400 && estimated_sold>=0){
Novel_net_price=price*0.10;
cout<<Novel_net_price;
}
else if(estimated_sold>400){
Novel_net_price=price*0.14;
}
else{
cout<<"Enter the right amount";
}
break;
}
}