#include <iostream>
#include <cmath>
using namespace std;
int main() {
bool flag = true;
int x;
int y = 0;
cin >> x;
if (x <= 0) y = x + 1;
else if (x <= 25) y = x - 1;
else if (x < 50) {
puts("NaN");
flag = false;
}
else y = x;
if (flag) cout << y << '\n';
}