# suint / sint

`suint` / `sint`에 대한 모든 비교 및 연산자는 `uint` / `int`와 기능적으로 동일합니다. [기본](/seismic-docs-kr/undefined-3/undefined.md)에 설명된 보편적인 형변환 규칙과 제한 사항이 적용됩니다.

```solidity
suint256 a = suint256(10)
suint256 b = suint256(3)

// == 예시
a > b  // true
a | b  // 11
a << 2  // 40
a % b  // 1
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://clairetranslation.gitbook.io/seismic-docs-kr/undefined-3/undefined/suint-sint.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
