#include int main() { int i; for (i = 0; i < 10; i++) { printf("%d ", i); } printf("done.\n"); return 0; }