diff --git a/templates/cpp/consoleio.cpp b/templates/cpp/consoleio.cpp new file mode 100644 index 0000000..a638698 --- /dev/null +++ b/templates/cpp/consoleio.cpp @@ -0,0 +1,18 @@ +#include +using namespace std; + +typedef long long ll; +typedef pair pii; +typedef vector vi; + +int main() { + ios_base::sync_with_stdio(false); + cin.tie(nullptr); + + int n; + cin >> n; + + cout << n << "\n"; + + return 0; +}