# Integer variables
i = 10 # An integer variable i with the value 10
l = 1005 # A long integer variable l with the value 1005
ll = 10000005 # A long long integer variable ll with the value 10000005
# Floating-point variables
f = 10.5 # A float variable f with the value 10.5
fi = 10 # Another float variable fi with the value 10 (integer value)
d = 1005.5 # A double variable d with the value 1005.5
di = 1005 # Another double variable di with the value 1005 (integer value)
# String input and output
s1 = input() # Read a string into s1 from user input
s2 = input() # Read another string into s2 from user input
print("Print normal string: ")
print("s1:", s1, ", and s2:", s2)
print()
# Reading a line of text
str = input() # Read a line of text into the variable str from user input
print("Print getline string: ")
print("str:", str)
# Character variables
ch = 'A' # A character variable ch with the value 'A'
s = "A" # A string variable s containing the character 'A'