arithmetic.py 112 B

12345678
  1. #!/usr/bin/env python3
  2. # Copyright 2009-2017 BHG http://bw.org/
  3. x = 5
  4. y = 3
  5. z = x + y
  6. print(f'result is {z}')