Help me in solving PSPP79A problem

My issue

cant slove this

My code

def print_square(num):
    square_result = num*num
    print(square_result)

def compute_value(a, b):
    # update your code below this line
    whole =print_sqaure(a) + print_square(b)+(2*(a*b))
    print(whole)
    print(a+b)
    
    
    
    
    

t = 3
for _ in range(t):
    A, B = map(int, input().split())
    compute_value(A, B)

Learning course: Python Programming
Problem Link: Return values in Python Programming