diff --git a/src/00_hello.py b/src/00_hello.py index 268998dfc7..0452931b79 100644 --- a/src/00_hello.py +++ b/src/00_hello.py @@ -1 +1,2 @@ -# Print "Hello, world!" to your terminal \ No newline at end of file +# Print "Hello, world!" to your terminal +print('Hello, world!') \ No newline at end of file diff --git a/src/01_bignum.py b/src/01_bignum.py index c020928d63..ae5aba7aac 100644 --- a/src/01_bignum.py +++ b/src/01_bignum.py @@ -1,4 +1,5 @@ # Print out 2 to the 65536 power # (try doing the same thing in the JS console and see what it outputs) -# YOUR CODE HERE \ No newline at end of file +# YOUR CODE HERE +print(2**65536); \ No newline at end of file