code
#include <iostream> using namespace std; int main() { //당연하지만 +는 양수, -는 음수를 나타냄 int x = 1; int y = -1; int z = -2; cout << "1 + (-1) = " << x + y << endl; cout << "-1 + (-2) = " << y + z << endl; return 0; }