; School of Computer Engineering
; K.N. Toosi University of Technology

%include "asm_io.inc"

segment .text

global asm_main

asm_main:
        enter 0,0
        pusha
        ;; ==========================

        call read_int
        
        and eax, 01111b
        
        call print_int
        call print_nl
        
        
        
        ;; ==========================
        popa
        leave
        ret