Batch, 3934 bytes
@ECHO|SET/aa-=%1@ECHO.%1 2>MER@ @REM>2 1%.OHCE@1%=-aa/TES@ ReversedEchoes (ECHO.) the input (%1). The rest of the first line technically redirects STDERR to a file called MER@, but this isn't impactful.
Second line is commented out (REM...).
Reversed
@ECHO.%1@SET/aa-=%1 2>MER@ @REM>2 1%=-aa/TES|OHCE@1%.OHCE@ Uses the arithmetic mode of the set command (SET /a) to subtract (-=) the input (%1) from an undefined variable (a) which is equivalent to 0 - input. Again, the rest of the first line technically redirects STDERR to a file called MER@, but this isn't impactful.
Second line is commented out (REM...).