#C2172. Sum Comparison Challenge

    ID: 45459 Type: Default 1000ms 256MiB

Sum Comparison Challenge

Sum Comparison Challenge

Given two integers b and c, compute their sum and compare it with \(50\). If the sum satisfies \(b+c \leq 50\), print "SUM-LESS"; otherwise, print "SUM-MORE". This challenge tests simple arithmetic operations and conditional comparisons.

inputFormat

Standard input consists of two integers b and c separated by spaces or line breaks.

outputFormat

Output a single line which is either "SUM-LESS" if \(b+c \leq 50\) or "SUM-MORE" otherwise.

## sample
10 15
SUM-LESS