Skip to content

Instantly share code, notes, and snippets.

View akasula09's full-sized avatar
🎯
Focusing

akasula09

🎯
Focusing
View GitHub Profile
@akasula09
akasula09 / addition.py
Last active April 13, 2023 00:35
only works in python no libraries
num1 = input("enter the first number of the subtraction equation")
num1 = int(num1)
num2 = input ("enter the second number of the subtraction equation")
num2 = int(num2)
print(num1 + num2)