Semi Calculator

You are given two variables X and Y print the value of their addition, subtraction, multiplication and division in the following format..

Example 1

int X = 4;
int Y = 2;

Output should be

4 + 2 = 6
4 - 2 = 2
4 * 2 = 8
4 / 2 = 2

Example 2

int X = 5;
int Y = 15;

Output should be

5 + 15 = 20
5 - 15 = -10 
5 * 15 = 75
5 / 15 = 0

Example 3

int X = 60;
int Y = 20;

Output should be

60 + 20 = 80
60 - 20 = 40
60 * 20 = 1200
60 / 20 = 3

Test your solution here
when it passes, copy it and submit it here so your coach can grade it.