Post

@PythonPr Here x is 5 and y is 10
Calculate 5*10 then add 2
Output will be 52
English

@PythonPr Answer: 52
x is 5, y is 10.
In x*y+2,
the multiplication happens first (PEMDAS rule)
5*10+2
simplifies to
50+2
that is 52, which gets printed.
English

























