#include<iostream> using namespace std; int main(){ unsigned long long int y=1,j; for(int i=1;i<100;i++){ y=1+2*i; cout<<y<<endl; } return 0; }