/bin/run.sh: line 4: 18 Arithmetic exception (core dumped) ./exe

//can any tell what is this
#include

using namespace std;

int main()
{
int number1, number2;
cin>>number1>>number2;
int count =0;
int i=1;
while(count<number1)
{

    int num = (3*i)+2;
    i++;
    if((num%number2)==0)
    {

    }
    else
    {
        cout<<num<<endl;
        count++;
    }

  }
return 0;

}