.section .data scanf_format: .asciz "%d" printf_format: .asciz "The number you entered was %d\n" .section .text .globl _start _start: mov %esp, %ebp sub $4, %esp pushl %esp pushl $scanf_format call scanf add $8, %esp pushl $printf_format call printf pushl $42 call exit