Runtime Error(SIGSEGV)

/Your program is to use the brute-force approach in order to find the Answer to Life,
the Universe, and Everything. More precisely… rewrite small numbers from input to output.
Stop processing input after reading in the number 42. All numbers at input are integers of one or two digits.
/

#include
using namespace std;

int main()
{
int num[10];
int n,i=0,counter=0;
bool right_num=true;

while(right_num==true)
{
	cin>>num[i];
	if(num[i]/100==0)
	{
		if(num[i]!=42) 
			right_num=true;
		else 
			right_num=false;
	}
	else
		break;
	counter++;
	i++;
}

for(i=0;i<counter-1;i++)
{
	cout<<num[i]<<endl;
}


return 0;

}
When I compile I get error message Runtime Error(SIGSEGV)