// SPDX-License-Identifier: Apache 2.0 pragma solidity 0.8.19; contract TestSth { function test(uint256 a, uint256 b) public view returns (uint256) { return a / b; } }