void maxnuber(int a,int b){int c=0;c=max(a,b);println("%d",c);}
float maxf(float a, float b){float c;if(a>=b) c=a;else c=b;return(c);}