#include <stdio.h> int Max3(int x, int y, int z) { int temp = x; if (y > temp) { temp = y; } if (z > temp) { temp = z; } return temp; } int main() { int a = 0; int b = 0; int c = 0; scanf("%d %d %d",&a,&a...