xxxxxxxxxx
"""
'//' is floor division on python which mean
the result will be rounded down (eg: 3.14 become 3), so
'5 // 2' will be 2
"""
xxxxxxxxxx
#In Python, the double forward slash (//) is the floor division operator.
#It is used to perform integer division, returning the largest integer that is less
#than or equal to the result of the division.
x = 10 // 3
print(x) # Output: 3