よく使うやつ

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll = long long;
#define rep(i , n) for(int i=0; i< (int)(n); i++)
#define int long long
const ll INF = 1e18;
const int inf = 1e9;
const int mod = 998244353;
template<class T>
void chmin(T& a, T b){ if(a > b) a = b; }
template<class T>
void chmax(T& a, T b){ if(a < b) a = b; }
void yes(){cout << "Yes" << endl;}
void no(){cout << "No" << endl;}
int32_t main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
}