Programiz
Python Online PRO ›
Compiler
[Link] Run Output Clear
1 a,b,c = 777,888,999 a= 777 b= 888 c= 999
2 print("a=",a,"b=",b,"c=",c)
3 print("\na+b = ",a+b,"\nb-c = ",b-c,"\na x c = ",a*c a+b = 1665
,"\nc/b = ",c/b) b-c = -111
4 a x c = 776223
5 print(" \n\nRespect the goat") c/b = 1.125
Respect the gaot