#include<stdio.h> int main(void) { int a, b, max; scanf("a=%d\nb=%d", &a, &b); max = (a > b)?a:b; printf("max=%d\n", max); return 0; }