Given two variables a = 10 and b = 20, swap their values using tuple unpacking in a single line. Print both values before and after the swap to verify.
Expected output:
Before: a=10, b=20
After: a=20, b=10
You must use tuple unpacking. No temporary variable allowed.