main
1#!/usr/bin/env python
2
3print("""
4Program author: mo khan
5ID: 3431709
6PROGRAM 1-MATH FUNCTIONS
7""")
8
9# Add two numbers and print the result
10print('ADDITION: 2+2={}'.format(2+2))
11
12# Subject one number from another and print the result
13print('SUBTRACTION: 4-2={}'.format(4-2))
14
15# Multiple two numbers and print the result
16print('MULTIPLICATION: 4*2={}'.format(4*2))
17
18# Divide one number from another and print the result
19print('DIVISION: 4/2={}'.format(4/2))
20
21# Compute the exponent and print the result
22print('EXPONENT: 2**3={}'.format(2**3))
23
24# Compute the remainder using modulus division and print the result
25print('REMAINDER: 5%2={}'.format(5%2))