#include <stdio.h>int main() { int type, a, b; scanf("%d", &type); scanf("%d %d", &a, &b); switch (type) { case 1: printf("%d\n", a > b ? a : b); break; case 2: printf("%d\n", a ...