Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 396 Bytes

notes.md

File metadata and controls

21 lines (13 loc) · 396 Bytes

Day 8 - Solution 1 : Calculator

Solution of the exercise given on previous Day - Calculator

a = 50 
b = 3

print("The value of", a, "+", b,"is", a+b)
print("The value of", a, "-", b,"is", a-b)
print("The value of", a, "/", b,"is", a/b)
print("The value of", a, "*", b,"is", a*b)

References