#!python

import sys
from itertools import *
from math import *
from statistics import *

import fire
from pymath import *

if __name__ == '__main__':
    if len(sys.argv) == 2 and sys.argv[1] not in globals():
        print(eval(sys.argv[1]))
    else:
        fire.Fire()
