The document presents a Keras sequential neural network to recognize handwritten digits from the MNIST dataset. It achieves 97.28% accuracy on the test set. The network uses TensorFlow and contains flatten, dense, and softmax layers. It is trained for 3 epochs with Adam optimization and cross-entropy loss. The results demonstrate the network can accurately identify digits while leaving room for improvement by tweaking hyperparameters or using more complex models. Source code and model details are provided.