I think you meant 2**1000
the syntax for formatting ate your star https://news.ycombinator.com/formatdoc
The reason for using `**` is that `^` is widely used for bitwise exclusive-or. So commonly `2**1000 != 2^1000`!
like this for code blocks