> ## 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.

# Less Than or Equal

> Check whether one number is no larger than another.

The **Less 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 less than or equal to **B**. |

For example, `10 ≤ 10` and `8 ≤ 10` both return `true`.
