#include <iostream>
usingnamespace std;
int main()
{
int N;
int A;
int F = 2;
cout << " Enter value of N: ";
cin >> N;
if (N < 1){
cout << " N value must be greater than 1 or this program will end " << endl;
}
elseif ( N > 1){
cout << " Value of F is: " << F << endl;
A = N / F;
cout << " The value of A is: " << A << endl;
}
system("pause");
return 0;
}