#include <stdio.h> int main (void) { int a = 1; do { if (a <= 10) { printf ("%d\n", a); a++; } } while (a <= 10); return 0; }