#include <catch2/catch.hpp>

TEST_CASE()
{
    auto const x = 10;
    auto const y = 173;

    auto const sum = 183;
    CHECK(x + y == sum);

    auto const difference = 163;
    CHECK(y - x == difference);
    CHECK(x - y == -difference);

    auto const product = 1730;
    CHECK(x * y == product);

    auto const quotient = 17;
    CHECK(y / x == quotient);

    auto const remainder = 3;
    CHECK(y % x == remainder);
}