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