import sys
import vcsn
weight = vcsn.context('lal, q').weight
weight('3').rdivide(weight('4'))
weight('3') / weight('4')
weight('3') // weight('4')
weight('2') / weight('4')
try:
weight('4') / weight('0')
except Exception as e:
print(e, file=sys.stderr)