✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Який результат виведе програма?
#include <iostream>
template<typename T>
T Max(T a, T b) {
return (a > b) ? a : b;
}
int main() {
std::cout << Max(2, 5);
}