#C6309. Taco Ingredient Checker

    ID: 50055 Type: Default 1000ms 256MiB

Taco Ingredient Checker

Taco Ingredient Checker

You are given an integer \(n\) representing the number of ingredients required for making a taco. You are also provided with two sequences of \(n\) integers: one representing the required amounts for each ingredient, and another representing the available amounts.

Your task is to determine if the available amount of each ingredient is enough. In other words, for every valid index \(i\) (where \(1 \leq i \leq n\)), check whether \(available[i] \geq required[i]\). If the condition holds for every ingredient, output "Enough"; otherwise, output "Not enough".

inputFormat

The input is provided via stdin and has the following format:

  1. An integer \(n\) representing the number of ingredients.
  2. A line with \(n\) space-separated integers representing the required amounts for each ingredient.
  3. A line with \(n\) space-separated integers representing the available amounts for each ingredient.

outputFormat

Print a single line to stdout containing "Enough" if every available amount is at least the required amount, otherwise print "Not enough".

## sample
3
500 200 300
600 200 400
Enough