consoleio

This commit is contained in:
2026-04-04 19:52:54 -05:00
parent 680970378f
commit 054c58cb37

View File

@@ -0,0 +1,18 @@
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
cout << n << "\n";
return 0;
}