#include <iostream> using namespace std; template<typename t> void sum(t a,t b) { if(a>b){ printf("%d ",a+b); printf("%d ",a-b); printf("%d ",a*b); printf("%d ",a/b); printf("%d",a%b); } else { printf("%d ",a+b); printf("...