#include
using namespace std;
int main(){
int n;
cin>>n;
if(n/2==0 and n/3==0)
{
cout<<n<<“is div by 2 and 3”<<endl;
cout<<“if-block!”<<endl;
}
else if(n/2==0){
cout<<n<<“is div 2”<<endl;
cout<<“if-block 1!”<<endl;
}
else if(n/3==0){
cout<<n<<“is div by 3”<<endl;
cout<<“if-block 2!”<<endl;
}
else{
cout<<“not divisible”<<endl;
cout<<“else block!”<<endl;
}
return 0;
}
please check this code