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

#include <stdio.h>

int main() {
  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;" : : : "eax", "ebx", "ecx", "edx");
 
  printf("a=%d b=%d, a+b=%d\n", a, b, c);
  
  return 0;
}