1
0
Fork 0

Add files via upload

This commit is contained in:
MGislv 2020-12-14 09:30:18 +01:00 committed by GitHub
parent d07b27f233
commit 08eee06a7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -6,9 +6,8 @@ int main()
scanf("%d", &n);
for (; n > 1; n--) {
for (; n > 1; n--)
printf("%d ", n);
}
printf("\n");
}