#include #include #include #include #include #include static const int MOD = 1000000007; using ll = long long; using u32 = unsigned; using namespace std; template constexpr T INF = ::numeric_limits::max() / 32 * 15 + 208; int main() { int n; cin >> n; vector> v(n); for (auto &&i : v) { scanf("%d %d", &i.first, &i.second); } sort(v.begin(), v.end(), [](pair p1, pair p2){return p1.first * p2.second > p1.second*p2.first;}); for (auto &&i : v) { printf("%d %d\n", i.first, i.second); } return 0; }