Error in the code

#include

using namespace std;

int main()
{
//to find the phathagorian triplet;
long long int N;
long long c,d;
cin>>N;
if(N>2)
{
if(N%2==0)
{
c=((NN)/4)-1;
d=((N
N)/4)+1;
cout<<c<<" β€œ<<d<<endl;
}
else
{
c=((NN)-1)/2;
d=((N
N)+1)/2;
cout<<c<<” "<<d<<endl;
}
}
else
{
cout<<-1<<endl;
}

return 0;

}
plz tell the error

I have edited your code… Try to submit it now…