contract Addition { function add(uint a, uint b) returns (uint c) { c = a + b; } }