.file	"tail.c"
	.text
.globl fact
	.type	fact, @function
fact:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$8, %esp
	movl	8(%ebp), %ecx
	movl	12(%ebp), %edx
	movl	%ecx, %eax
	testl	%edx, %edx
	je	.L1
	leal	-1(%edx), %eax
	movl	%eax, 4(%esp)
	movl	%ecx, %eax
	imull	%edx, %eax
	movl	%eax, (%esp)
	call	fact
.L1:
	movl	%ebp, %esp
	popl	%ebp
	ret
	.size	fact, .-fact
	.section	.rodata.str1.1,"aMS",@progbits,1
.LC0:
	.string	"%d\n"
	.text
.globl main
	.type	main, @function
main:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$8, %esp
	andl	$-16, %esp
	movl	$6, 4(%esp)
	movl	$1, (%esp)
	call	fact
	movl	%eax, 4(%esp)
	movl	$.LC0, (%esp)
	call	printf
	movl	%ebp, %esp
	popl	%ebp
	ret
	.size	main, .-main
	.section	.note.GNU-stack,"",@progbits
	.ident	"GCC: (GNU) 3.3.5 (Debian 1:3.3.5-5)"