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