| # This file is public domain, it can be freely copied without restrictions. | |
| # SPDX-License-Identifier: CC0-1.0 | |
| def adder_model(a: int, b: int) -> int: | |
| """model of adder""" | |
| return a + b | |
| # This file is public domain, it can be freely copied without restrictions. | |
| # SPDX-License-Identifier: CC0-1.0 | |
| def adder_model(a: int, b: int) -> int: | |
| """model of adder""" | |
| return a + b | |