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

#include <stdio.h>

int main() {
  volatile int a,b,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;
}