#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
int x;
cout<<„unesi neki cio broj x=“;
cin>>x;
cout<<endl;
if (x>0)
{ cout<<„broj je pozitivan“<<endl; }
else
if (x<0)
{ cout<<„broj je negativan“<<endl; }
else
{ cout<<„broj je nula“<<endl; }
system(„PAUSE“);
}