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