print "Howdy, neighbour! This is my first C program"
def integer_add(x,y):
result = x+y
return result
#This program has no output because the function is not called in this program
def integer_add(x,y):
result = x+y
return result
sum=integer_add(5,12)
print "The addition of 5 and 12 is ",sum