hey i just switched from turbo c++ to dev c++
i cant run the following program please help
#include<iostream>
using namespace std;
int main()
{
int n;
int k;
cout<<"Enter the values\n";
cin>>n;
cin>>k;
if (n>k)
{cout<<"The value entered first is greater ";}
else
{cout<<"The value entered 2nd is greater";}
return 0;
}