#include void main() { int i; i=5; while(i<=1000) { printf("%i\t",i); i+=5; } }