<?php

// your code goes here

$a = 'Man';
$b = 'Woman';

echo $a . $b;

$a ^= $b ^= $a ^= $b;
echo '<br>';
echo $a . $b;
