SOLUTION OF UVA 12952 UVA SOLUTIONS // Question of 12952 - Tri-du // Mahmud_Jamil #include<stdio.h>#define MAX(a,b) ((a)>(b)?(a):(b))int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF) printf("%d\n", MAX(a,b)); return 0;} Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook