:heavy_check_mark: Calculate "A + B" (examples/awk/aplusb.awk)

Verified with

Code

# competitive-verifier: TITLE Calculate "A + B"
function add(a, b) {
    return a + b;
}
Back to top page