diff --git a/nums.py b/nums.py index 71c8f9c..ee2e4ca 100644 --- a/nums.py +++ b/nums.py @@ -1,8 +1,12 @@ a = 20 -b = 35 +b = 500 -# do something here +# do something here +temp = a +a = b +b = temp print("our a is now equal to: ", a) -print("our b is now equal to: ", b) \ No newline at end of file +print("our b is now equal to: ", b) +print("this is my online code")