# Declare 10 variables and perform arithmetic operations(Exponential, Modulus and Floor Division) on them. a=1 b=2 c=3 d=4 e=5 f=6 g=7 h=8 i=9 j=10 #Exponential operation x=(j**a) y=(x**b) print(y) #Modulus operation z=(d%c) print(z) #floor division fd=(g//f) print(fd)![]()

