#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
int a;
skok: cout <<„unesi broj razlicit od nule“ “
„;cin>>a;
if(a==0)
{
cout<<„pogresan unos,ponovi!“<<endl;
goto skok;
}
if (a>0)
{ cout<<„broj je pozitivan“<<endl; }
else
if (a<0)
{ cout<<„broj je negativan“<<endl; }
cout<< endl,
system(„PAUSE“);
}