import pytest @pytest.fixture def mock_codeforces_html(): return """
            
3
1 2 3
            
6
""" @pytest.fixture def mock_atcoder_html(): return """

Sample Input 1

3
1 2 3

Sample Output 1

6
""" @pytest.fixture def mock_cses_html(): return """

Example

Input:

3
1 2 3

Output:

6
"""