#include int main() { int n; n=1; while (n <= 5) { printf("%d\n", n); n = n+2; } return 0; }