#include <iostream.h>template <class type>type max(type x, type y){ return x>y?x:y;}int main(){ return 0;}