#!/usr/bin/python3
"""
24 Point Game

Use basic arithmetics to get 24 or other numbers!

author: Peijun Zhu
"""
import sys
from PyQt5.QtWidgets import QApplication
from Game24.Windows.MainWindow import MainWindow
app = QApplication(sys.argv)
ex=MainWindow()
sys.exit(app.exec_())
