/* * Solution Template for Addition * * This file is provided to assist with reading of input and writing of output * for the problem. You may modify this file however you wish, or * you may choose not to use this file at all. */ #include int a; int b; int answer; int main(void) { /* Read the input of a and b. */ scanf("%d%d", &a, &b); /* * TODO: This is where you should add the numbers. Store the sum into the * variable answer. */ /* Write the answer. */ printf("%d\n", answer); return 0; }