#include void main() { int a; a = 1; printf("*** s ***\n"); while (a <= 10) { printf(" %d", a); a++; } printf("\n"); }