Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Python by vklchv ( 7 years ago )
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}.")
Revise this Paste