#include<stdio.h> main() { int x,y,z; printf("Please Input three integers!/n"); scanf("%d,%d,%d",&x,&y,&z); printf("%d/n",(x>y?x:y)>z?(x>y?x:y):z); }