def a():
'''doc string
Hello MeMe
ZZZ sleep
'''
pass
x='Hello'
z = 'abcdef acddef bccddt \
yywert button'
help(a)
print(z)
_xxxx='crazy'
z='yyxxx mma hihi sad\
omg wewe'
print(_xxxx)
x = 1
y = 1.0
print(type(x), type(y))
print(0.5-0.4)
print(0.5-0.2)
print(0.1+0.1+0.1)
from decimal import*
z=Decimal('0.1')+Decimal('0.1')+Decimal('0.1')
print(z,type(z))
x=1+2j
print(x* x,type(x))
print(1/3 + 1/3 + 1/3)
print(1/5 + 1/10 +7/10)