pragma warning(disable: 4996)
include
using namespace std;
int main() { //freopen("input.txt", "r", stdin); //freopen("output.txt", "w", stdout); int a; cin >> a; cout << "The next number for the number " << a << " is " << a + 1 << "." << endl; cout << "The previous number for the number " << a << " is " << a — 1 << ".";
return 0;
}