'''
Created on Sep 6, 2016

@author: Susan
'''
def sum(a,b):
    return a+b

x = sum(4,3)
print x
print sum(3.4, 1.2)
print sum("cat", "dog")

