Va rog :(( Este urgent !!!!

Răspuns:
using namespace std;
#include <iostream>
#include <stdlib.h>
#include <math.h>
int main()
{
int numar;
cout<<"Numar:";
cin>>numar;
if (numar>0)
cout<<"numarul "<<numar<<" este pozitiv \n";
if (numar==0)
cout<<"numarul "<<numar<<" este nul";
if (numar<0)
cout<<"numarul "<<numar<<" este negativ \n";
}