#include <stdio.h> int main () { int x,y,z; scanf("%d%d%d",&x,&y,&z); int max = x>y?x:y; max = max>z?max:z; printf("%d为最大值",max); return 0; }