data

// int 최대값
#define INF 2147483647

// 오름차순 priority_queue<pair>
// 다익스트라
priority_queue<pair<int, int>, vector<pair<int, int>>, greater<> > pq;

 

frame 1

#include <bits/stdc++.h>
#define sync ios::sync_with_stdio(false);cin.tie(NULL)
using namespace std;

int main()
{
    sync;



    return 0;
}

 

frame 2

#include <bits/stdc++.h>
using namespace std;

void solve()
{

}

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(NULL);

    solve();

    return 0;
}