Hey,

I am just getting started with c++ and I am adjusting from php, which has proved difficult so far. Variable types are throwing me off.

I can't find anywhere how you would 'combine' two integers. For example:

int x = 5;
int y = 2;

and I want to make them 52 or 25. In php you can just separate them with a period and they would append. Is it similar in C++ or will I have to write a math formula in a function to derive the desired number from two augments?

Thanks!
David