#include int main() { int a, b; scanf("%d%d", &a, &b); if (a < 1) { return 1; } if (b > 100) { return 1; } printf("a + b = %d\n", a + b); return 0; }