Is 165 the Correct Result?

Forgive me in advance if I’m breaking a rule, this is my first time posting.

So I’m kinda wracking my brain here since I’m new to this, but I was just wondering if someone can confirm that the number I should be getting for the very final section is 165? I’ve typed out the code two different ways because I was certain the first way wasn’t supposed to be the code structure I wrote, but when I clicked on the hints and edited my code to include the += from earlier in the lesson I still got the same answer. I want to make sure I’m getting the hang of this. I’m also trying to keep this a little vague to adhere to the rules.

it should be 165. the math is: 100 + 13 * 5. Given order of operations, 13 * 5 is resolved first, which is 65. 100 + 65 is 165

2 Likes
print(13 * 5)