#include <stdio.h> int main(void) { int i; for(i = 0; i < 102; i = i + 5) printf("%d ", i); return 0; }