#include<stdio.h>

int main(){
   int x, y, sum;
   scanf("%d%d", &x, &y);
   
   sum = x + y;
   
   printf("sum of %d and %d is %d\n", x, y, sum);
   
   return 0;
};