From 918fdb13b3fc1d722520d0329f429b25bdd530b5 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 17 Oct 2023 09:44:36 +0200 Subject: [PATCH] Created the solution.cpp --- units/2023_10_17/solution.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 units/2023_10_17/solution.cpp diff --git a/units/2023_10_17/solution.cpp b/units/2023_10_17/solution.cpp new file mode 100644 index 0000000..cf11874 --- /dev/null +++ b/units/2023_10_17/solution.cpp @@ -0,0 +1,14 @@ +#include + +using namespace std; + +int main() { + short Var1; + int Var2; + + Var1 = 5; + Var2 = 100; + + cout << "Var1: " << Var1 << endl; + cout << "Var2: " << Var2 << endl; +} \ No newline at end of file