#include <stdio.h> int main() { int a,b; register int c; scanf("%d %d", &a, &b); c = a+b; asm ("movl $1, %eax;" "movl $1, %ebx;" "movl $1, %ecx;" "movl $1, %edx"); printf("a=%d b=%d, a+b=%d\n", a, b, c); return 0; }