#include<stdio.h> void main() {int a,b,max; printf("input two number:\n"); scanf("%d%d",&a,&b); if(a>b)max=a;else max=b; printf("max=%d\n",max); }