#include<iostream> using namespace std; int main() { int a=-16; while (a<=16) { cout << a << endl; a+=1; } return 0; }