mirror of
https://github.com/geohot/qira
synced 2025-02-21 00:44:42 +03:00
10 lines
100 B
C
10 lines
100 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int i;
|
|
for (i = 0; i < 5; i++) {
|
|
printf("%d\n", i);
|
|
}
|
|
}
|
|
|