aboutsummaryrefslogtreecommitdiff
path: root/cses/SortingAndSearching/Apartments/main.cpp
blob: 33c3914fb342f7b211e6c8006bec2f344ba48af1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <algorithm>
#include<bits/stdc++.h>

using namespace std;

#define all(x) (x).begin(), (x).end()

int main () {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
  int n, m, k;
  cin >> n >> m >> k;
  

}