C Essentials Part 1 Module 3 Test -

#include <stdio.h> int main() { int a, b, sum; scanf("%d %d", &a, &b); sum = a + b; if (sum > 100) printf("HIGH"); if (50 <= sum <= 100) printf("MEDIUM"); else printf("LOW"); return 0; }

She hit . Input: 75 30 → Sum = 105. Output: HIGH . Good. Input: 20 40 → Sum = 60. Output: MEDIUMLOW — Error! c essentials part 1 module 3 test

if (sum > 100) printf("HIGH"); else if (sum >= 50 && sum <= 100) printf("MEDIUM"); else printf("LOW"); Run again. 20 40 → LOW . 45 30 → MEDIUM . 80 30 → HIGH . Perfect. #include &lt;stdio