5 lines
75 B
Text
5 lines
75 B
Text
int main(){
|
|
for(int i = 10; i >= 0; i--){
|
|
write(i + "\n");
|
|
}
|
|
}
|