== 문제 1 == {{{~cpp #include using namespace std; void swap(int *a, int *b){ int temp; temp = *a; *a = *b; *b = temp; } void main(){ int a =1, b = 18; cout << "a = " << a << " b = " <