I have a question how would it be possible to put to integers together.
So for example lets say the had the number 1 and the number 2. If you where to add the result you would get 3 however I am just curious how could you get 12 from that.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include <iostream>
#include <sstream>
usingnamespace std;
int main ()
{
int lol = 32;
int lold = 32;
int jew = 0;
jew = lol && lold;
cout << jew << endl;
return 0;
};