#pragma once

template <typename Left, typename Right>
struct pair
{
    Left left;
    Right right;
};
