Online Python3 Compiler
										
										
x=20;
y=40;

print ("sum of x+y =", (x+y));
print ("Multiplication of x and y =", (x*y));
print ("x Subtract from y =", (y-x));
print ("y divided by x =", (y/x));
                                
                                

Output Results

										
sum of x+y = 60
Multiplication of x and y = 800
x Subtract from y = 20
y divided by x = 2.0