2025-04-08 18:19:08 +08:00

10 lines
110 B
C

#include <stdio.h>
void f(){
printf("0 1 2 3 4 5 6 7 8 9 10\n");
}
int main() {
f();
return 0;
}