oranges_number = int(input("Input the number of oranges: " ))
apples_number = int(input("Input the number of apples: " ))

def oranges_apples(oranges_number, apples_number):
    print("How many oranges and apples are in the box?")
    print(f"There are {oranges_number} oranges and {apples_number} apples in box")

total = oranges_number + apples_number
print(f"The total of items in box is {total}.")

Add a code snippet to your website: www.paste.org