#include <iostream>
int main()
{
int a = 10;
//the first variable in the stack,
//to see if the address is begger than the second var
std::cout<<"First: "<<&a<<std::endl;
//the second variable in the stack;
int b = 20;
std::cout<<"Second: "<<&b<<std::endl;
}