# -*- coding: utf-8 -*- """ Created on Wed Sep 17 09:43:08 2014 @author: progprim """ def mysum(a, b): """ This function mysum takes two values a and b, computes the sum, and returns the sum. This is not particularly relevant, but we are pround to have written our first function. Hans Fangohr, fangohr@soton.ac.uk, 17 September 2014 """ s = a + b return s print(mysum(10, 20))