#include int main(void) { int i = 0; while (i <= 250) { printf("%dn", i++); } i = 249; while (i >= 0) { printf("%dn", i--); } return 0; }