diff --git a/please_mess_with_me.py b/please_mess_with_me.py index 7525e69..68fe76e 100644 --- a/please_mess_with_me.py +++ b/please_mess_with_me.py @@ -4,5 +4,14 @@ b = 1 c = True -print(a + b) +# print(a + b) print(b + c) + +# To correct the mistake, we might convert a to an integer before adding +a = int(a) +print(int(a) + b) + +# The following will also work: +print (a+c) +print (a*c) +print(a-b) \ No newline at end of file