import pytest

@pytest.mark.parametrize("a", [1, 3, 4, 5, 6, 7])
@pytest.mark.parametrize("second", [2, 6, 8, 10, 12, 14])
def test_exmpl(a, second):
    assert (second - a) > 0
