Initial commit

This commit is contained in:
2022-06-01 20:14:50 +03:00
commit 8b9cce4739
1094 changed files with 68851 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,20 @@
#include <iostream>
using namespace std;
int main() {
int N;
cin >> N;
int arr[N];
for (int i = 0; i < N; i++) {
cin >> arr[i];
}
for (int i = N - 1; i >= 0; i--) {
cout << arr[i] << " ";
}
cout << endl;
return 0;
}