#include using namespace std; int main() { for (int a = INT_MIN; a <= INT_MAX; a++) { if (a * 2 / 2 != a) cout << a << endl; } return 0; }