# include <stdio.h> void main() { int x,y,m; printf("input two integers:"); scanf_s("%d%d",&x,&y); m=(x>y)?x:y; printf("max=%d\n",m); }