#!/usr/bin/python
#3 + 4  + (2*5).  

from stacy import * 

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

final = adder( first , second )

print final



