> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Greater Than or Equal

> Check whether one number is at least another.

The **Greater Than or Equal** action compares two numbers using `A ≥ B`.

## Inputs

| Input | Type   | Required | Description                  |
| ----- | ------ | -------- | ---------------------------- |
| **A** | Number | Yes      | The value on the left side.  |
| **B** | Number | Yes      | The value on the right side. |

## Outputs

| Output     | Type    | Description                                          |
| ---------- | ------- | ---------------------------------------------------- |
| **Result** | Boolean | `true` when **A** is greater than or equal to **B**. |

For example, `10 ≥ 10` and `12 ≥ 10` both return `true`.
