7 lines
93 B
Text
7 lines
93 B
Text
int main(){
|
|
int i = 1024;
|
|
while(i > 0){
|
|
write(i + "\n");
|
|
i = i / 2;
|
|
}
|
|
}
|