Introduction - If you have any usage issues, please Google them yourself
#include<stdio.h>
#include<algorithm>
int a[100][100],b[100][100],c[100]
int max0(int a,int b)
{
if(a>b)
return a
else
return b
}
int min0(int a,int b)
{
if(a<b)
return a
else
return b