Hello! I need your help in solving one problem.
There are three variables:
$ a = 16431130;
$ b = 15318085;
$ c = 8860504;
$ result = $ a ^ $ b ^ c;
At the end, two values are known, the $ result variable and the $ c variable. Tell me how to get the variables $ a and $ b from these 2 variables. How best to change
$ result = $ a ^ $ b ^ c;
to get the desired result?
$a = rand(); $b = $a ^ $c ^ $result;- Akina