#pragma once template static T max(T a, T b) { return a > b ? a : b; } template static T min(T a, T b) { return a > b ? b : a; }