; Ze vstupu načti dvě 32b čísla (X a Y) a vypiš jejich součet (X+Y). %include "rw32.inc" section .text main: call ReadInt32 ; ReadInt32_Silent mov ebx, eax call ReadInt32 ; ReadInt32_Silent add eax, ebx call WriteInt32 ret