0% found this document useful (0 votes)
155 views4 pages

Calclater

This Python code welcomes the user to an adding software created by Rohit. It asks the user to input two numbers, adds them together and displays the result. It then thanks the user for using the software and displays Rohit's name at the bottom surrounded by separator lines.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
155 views4 pages

Calclater

This Python code welcomes the user to an adding software created by Rohit. It asks the user to input two numbers, adds them together and displays the result. It then thanks the user for using the software and displays Rohit's name at the bottom surrounded by separator lines.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 4

print("------------------------------------------------------------------------|")

print("welcome to adding software |")


print("by rohit |")
print("get started |")
print("------------------------------------------------------------------------|")

a=input("enter first number--->")


print(" |")
b=input("enter second number-->")
print(" |")
print("your answer is -->")
print(" |")
print(int(a) + int(b))
print(" |")

print("thanks for using this software")


print("------------------------------------------------------------------------|")
print("------------------------------------------------------------------------|")
print("------------------------------------------------------------------------|")
print("------------------------------------------------------------------------|")
print("------------------------------------------------------------------------|")
print("------------------------------------------------------------------------|")
print("------------------------------ by rohit---------------------------------|")
print("------------------------------------------------------------------------|")
print("------------------------------------------------------------------------|")
print("------------------------------------------------------------------------|")
print("------------------------------------------------------------------------|")

You might also like