
;   cin >> i;
        segment .data
format: db      "%d", 0     ; add ending 0 byte to strings
        segment .text
        lea     rdi, [format] ; parameter 1 for scanf
        lea     rsi, [i]      ; parameter 2 for scanf
        xor     eax, eax      ; 0 floating point parameters for scanf
        call    scanf

;       Test rax vs 1 after scanf to see if it worked.
;       scanf returns the number of items it has read

