For today's challenge you have to take an input, and if your source code is reversed, then the input should be printed doubled.
Let's say your source code is ABC and its input is xyz. If I write CBA instead and run it, the output must be any of be xyzxyz or xyz xyz or
xyz
xyz
For any numerical input you should not multiply it with 2, instead use the upper rule, for input 1 -> 11 or 1 1 or
1
1
(Trailing newlines allowed in output, but not the leading ones)
For simplicity, you can assume that the input is always a single line string containing only ASCII letters (a-z), digits (0-9) and spaces. (You will not get empty input)
Standard loopholes apply, shortest code wins
original source code's output can be anything