You are given two pointers, each pointing to different integer variables.
Task:
You must use double pointers (int **p1, int **p2) to swap addresses.
Example-1
Input: a = 10, b = 20
Output: a points to 20, b points to 10
Example-2
Input: a = 5, b = 15
Output: a points to 15, b points to 5
Input
10 20
Expected Output
20 10