/* Example of code with sum operation */

int main() {
    int result, num1=20, num2=10;
    result = num1 + num2;

    return 0;
}
