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