#include<stdio.h>
int main(){
int i=1;
do{
i++;
}
while(i<=10);
return 0;
}
Standard input is empty
the value is 1 the value is 2 the value is 3 the value is 4 the value is 5 the value is 6 the value is 7 the value is 8 the value is 9 the value is 10