Consider the following function: def funky(a):
'''funky(num) -> num'''
b = 3 * a + 1
return b
What value of causes the following to evaluate to -5:
4 * funky(x) + 3
I got -2, but it is wrong, plz help
Its -1