# [Aceto]
 kτ\p******u
Prints out 

<s>1 * 10<sup>846</sup></s> (2017)

<s>1.1 * 10<sup>846</sup></s> (2018)

<s>1.3 * 10<sup>846</sup></s> (2019)

6.89 * 10<sup>13537</sup> (2019)

###Explanation
<pre>k - makes the stack 'sticky' so that values when popped are only copied,
 not removed
τ - pushes the date on the stack (the year is on the top, 2017 right now...)
\ - escapes the next character (print)
p - (ignored on first go-around)
*
 *
 *
 * Multiplies top element by second, but stack has one element so it does it by itself
 *
 *
 *
 *
u - reverses instruction pointer direction
 *
 *
 *
 *
 *
 *
 *
*
p - prints
\ - escapes the date
k - makes stack sticky
</pre>
[Try it online!][TIO-ja2wxl6x]

[Aceto]: https://github.com/aceto/aceto
[TIO-ja2wxl6x]: https://tio.run/##S0xOLcn//z/7fEtMgRYYlP7/DwA "Aceto – Try It Online"