def calculate(a, b=10): result = (a + b) * 2 if result > 100: print("Large result:", result) return result # This is a comment x = calculate(5, 15)