10 2
5
import sys
p=sys.stdin.read().strip().split()
if len(p)<2:
sys.stdout.write('ERROR')
else:
try:
a=int(p[0]); b=int(p[1])
if b==0:
sys.stdout.write('DIVIDE BY ZERO')
else:
sys.stdout.write(str(a//b))
except Exception:
sys.stdout.write('ERROR')
import sys
p=sys.stdin.read().strip().split()
if len(p)<2:
sys.stdout.write('ERROR')
else:
try:
a=int(p[0]); b=int(p[1])
if b==0:
sys.stdout.write('DIVIDE BY ZERO')
else:
sys.stdout.write(str(a//b))
except Exception:
sys.stdout.write('ERROR')