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