Example #1
0
def main():
   print ("2 + 3 = ",add_two(2,3))
   print ("2 + 4 = ",add_two(2,4))
   print ("2 + 3 + 4 = ",add_three(2,3,4))
Example #2
0
#This has been done Yoe, hope it will get me a job someday in the future.

from adding import add_two, add_three

def add_two(a,b):
   print("Hi, just adding")
return a+b

def main():
   print ("4+4=", add_two(4,4))
print ("2+2+2=", add_three(2,2,2))
      main()

Example #3
0
def main():
	print ("2 + 2 + 2 = ", add_three(2,2,2))
	print ("2 + 3 = ", add_two(2,3))
	print ("3 + 5 = ", add_two(5,3))
Example #4
0
def main():
    print ("2 + 2 + 2 = ", add_three(2,2,2))
    print ("2 + 3 = ", add_two(2,3))
    print("4+4 = ", add_two(4,4))
    print ("Hello Oklahoma")
Example #5
0
def main():
   print ("2+2+2 = ", add_three(2,2,2))
   print ("2 + 3 = ", add_two(2,3))
   print ("hello Oklahoma")
Example #6
0
def main():
    print ("2+2+2 =", add_three(2,2,2))
    print ("2 + 3 = ",add_two(2,3))
    print ("Hello, Oklahoma")
    print ("3 +9 = " , add_two(2,3))
Example #7
0
def main():
	print ("2+3=", add_two(2,3))
	print ("2+2+5=", add_three(2,2,5))
Example #8
0
def main():
    print("2 + 2 + 2 =", add_three(2, 2, 2))
    print("2 + 3 =", add_two(2, 3))
    print("hello OK")
    print("dammit stop changing my code, Terra")
Example #9
0
def main():
    print "Blah"
    print ("2 + 3 = ",add_two(2,3))
    print ("2 + 3 + 4 = ", add_three(2,3,4))
    print add_four(3,6,2,1)