// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.23; interface IBasicContractTest { function adder( uint _a, uint _b ) external returns (uint result, bool success); function subtractor( uint _a, uint _b ) external returns (uint result, bool success); } contract SafeMathContract is IBasicContractTest { function adder( uint _a, uint _b ) external pure override returns (uint result, bool success) { if (type(uint).max - _a