#include<iostream> using namespace std; int main(){ int m=0; for(int i=5;i<=500;i+=10){ cout<<i<<endl; } return 0; } //Online Judge