#include<iostream> using namespace std; int main(){ int a=17; for(int i=1;i<=100;i++){ cout<<a<<endl; a=a+17; } return 0; }