// Sample assembly language program for CSE 413 // Output from your compiler on similar source code will // probably be somewhat different, but the basic code // should be roughly the same and should have the same effect. int main() { int answer; int m; int n; m = get(); n = get(); answer = doubleSum(m,n); answer = put(answer); return 0-1; } int doubleSum(int a, int b) { int x; int y; int total ; x = a * 2; y = b; total = x + y; return total; }