You can download this code by clicking the button below.
This code is now available for download.
This function adds two arguments. If the arguments are not integers, it returns an error message.
Technology Stack : Built-in type conversion
Code Type : Function
Code Difficulty :
def aaaa(arg1, arg2):
try:
result = int(arg1) + int(arg2)
except ValueError:
result = 'Inputs must be integers'
return result