input = Integer a, Integer b initialize sum as Integer ask: sum = add(a, b) say(sum) finish function add(Integer first, Integer second) initialize s as Integer s = first + second return s endFunction