#include<cstdio>
int main() {
  int a,b;
  scanf("%d%d",&a,&b);
  printf("%d+%d=%d\n%7d\n+%6d\n-------\n%7d",a,b,a+b,a,b,a+b);
}