/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello\nWorld");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\'Hello\'");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"Hello World\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"!@#$%%^&*()\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int n;
scanf("%d",&n);
printf("%d",n);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char x;
scanf("%c",&x);
printf("%c",x);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float t;
scanf("%f",&t);
printf("%f",t);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
printf("%d %d",a,b);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char x, y;
scanf("%c %c",&x, &y);
printf("%c %c", y, x);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float a;
scanf("%f", &a);
printf("%.2f", a);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int o;
scanf("%d",&o);
printf("%d %d %d", o, o, o);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int u, i;
scanf("%d:%d", &u, &i);
printf("%d:%d", u, i);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int o, a;
scanf("%d %d",&o, &a);
printf("%d", o/a);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a%b);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%lld", (long long int)a+b);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d", &a);
printf("%lld", (long long int)a+1);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%lld\n", (long long int)a+b);
printf("%lld\n", (long long int)a-b);
printf("%lld\n", (long long int)a*b);
printf("%d\n", a/b);
printf("%d\n", a%b);
printf("%.2f", (float)a/b);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d", &a);
printf("%d%%", a);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%d %d", b, a);
return 0;
}
*/
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%d+%d=%lld\n", a, b, (long long int)a+b);
printf("%d-%d=%lld\n", a, b, (long long int)a-b);
printf("%d*%d=%lld\n", a, b, (long long int)a*b);
printf("%d/%d=%d\n", a, b, a/b);
return 0;
}