PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
print ("hello")
#Number
a=7
b=6
print (a+b)
#decimal
a=2.6
b=6.8
print (a+b)
#basic python
a=2335
b=80865
print(a*b)
input("Whats your name")
name = input("What's your name? :")
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run