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