FunctiongetQUESTION:
Given two numbers a and b, swap their values without using a temporary variable and return them.
Example:
Input: a = 13, b = 9
Output: 9 13
06.Bit Manipulation/1. Learn Bit Manipulation/06.Swap two numbers without temporary variable.cpp:18