[알고리즘] 백준 16099 - Larger Sport Facility (C++) [문제 링크] : https://www.acmicpc.net/problem/16099#include using namespace std;int main(){ int T; long long a, b, c ,d; cin >> T; while(T--){ cin >> a >> b >> c >> d; long long tmp = a * b; long long tmp2 = c * d; if(tmp > tmp2){ cout 알고리즘 2025.05.23