Ive been wrapping my brain around this all day and i cant find a specific answer to help me, before this i had serious trouble just to get it compiled but thanks to that long drawn out process i understand alot more but this is a different story...
Heres the program, haha as simple as it looks its kinda sad how much trouble it giving me but i digress...
Your problem is this. == is the operator to compare two values (check if they're equal or not), and plus you're doing it backwards. As it is, that whole block doesn't do anything useful at all, and certainly not what you wanted it to do. Do it like this instead, and learn from the example:
1 2 3 4
sum = num1 + num2;
diff = num1 - num2;
quo = num1 / num2;
prod = num1 * num2;