# Welcome to Python Code Pad
# Code is automatically saved on edit
# Use it to run Python 3 code
# Print to the console
print('Python is awesome')
# Write functions
def greeting():
return 'Hello'
# Call functions
print(greeting())
# Import from Standard Library
import datetime
now = [Link]()
print(now)
# Create and work with classes
class Greeting:
def greet(self, name):
return 'Hello ' + name
print(Greeting().greet('Developer'))
# Have fun coding in Python
a=int(input("Enter 1st no"))
b=int(input("Enter 2nd no"))
c=a+b
print("Sum of two number is",c)