알고리즘
[알고리즘] 백준 25494 - 단순한 문제 (Small) (C++)
blueberrysoda
2025. 2. 9. 23:25
[문제 링크] : https://www.acmicpc.net/problem/25494
#include <iostream>
using namespace std;
int main(){
int T, a, b, c;
cin >> T;
while(T--){
cin >> a >> b >> c;
cout << min(a, min(b, c)) << "\n";
}
return 0;
}