Result Size: 625 x 571
demo_oper_floordiv.py:
x
 
x = 15
y = 2
print(x // y)
#the floor division // rounds the result down to the nearest whole number
C:\Users\My Name>python demo_oper_floordiv.py
7