10 lines
110 B
C
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;
|
|
} |