Skip to content

Instantly share code, notes, and snippets.

View dynamosingh6's full-sized avatar
🎯
Focusing

Dhananjay Singh dynamosingh6

🎯
Focusing
View GitHub Profile
def add(x, y):
return x + y;
nx = float(input("enter first no."))
ny = float(input("enter second number"))
print(add(nx,ny))