Skip to content

Instantly share code, notes, and snippets.

@krishnaprajapat
Created July 22, 2018 13:38
Show Gist options
  • Save krishnaprajapat/6bf4c8a9d0b9a222a7badb41ef8f35da to your computer and use it in GitHub Desktop.
Save krishnaprajapat/6bf4c8a9d0b9a222a7badb41ef8f35da to your computer and use it in GitHub Desktop.
Python program to add two number
a=1.1;
b=3.1;
c=a+b;
print('sum of a&b is {0} '.format(c)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment