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