// Author: *** // Date: *** // Tabs: *** (indicate the separation between tab stops) public class Arithmetic { //================================================================= // inc(A) returns an array of bits representing A+1. //================================================================= public static byte[] inc(byte[] A) { ... } //================================================================= // sum(A,B) returns an array of bits representing A+B. //================================================================= public static byte[] sum(byte[] A, byte[] B) { ... } //================================================================= // product(A,B) returns an array of bits representing A*B. //================================================================= public static byte[] product(byte[] A, byte[] B) { ... } }