Listing 02-01: First program with variables

##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 02\02.01 - First program with variables.py
# Description: First program with variables
##############################################################################

a = 2
b = 3
print(a + b)
Click here to download the file