Created the solution.cpp

This commit is contained in:
2023-10-17 09:44:36 +02:00
parent 2d149c1256
commit 918fdb13b3

@ -0,0 +1,14 @@
#include <iostream>
using namespace std;
int main() {
short Var1;
int Var2;
Var1 = 5;
Var2 = 100;
cout << "Var1: " << Var1 << endl;
cout << "Var2: " << Var2 << endl;
}