#!/usr/bin/python

from stacy import *

#Find 3 +4 + (3*5)

first = adder(3,4)
second = multiply(3,5)
answer = adder(first,second)

print answer
