Created the solution.cpp

This commit is contained in:
Mathias Wagner 2023-10-17 09:44:36 +02:00
parent 2d149c1256
commit 918fdb13b3
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -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;
}