Skip to content

Instantly share code, notes, and snippets.

@muthu1809
Created April 1, 2025 11:33
Show Gist options
  • Select an option

  • Save muthu1809/2fec409a638f2611f96197f048367ef0 to your computer and use it in GitHub Desktop.

Select an option

Save muthu1809/2fec409a638f2611f96197f048367ef0 to your computer and use it in GitHub Desktop.
def கூட்டல்(எண்1, எண்2):
return எண்1 + எண்2
def கழித்தல்(எண்1, எண்2):
return எண்1 - எண்2
def பெருக்கல்(எண்1, எண்2):
return எண்1 * எண்2
def வகுத்தல்(எண்1, எண்2):
return எண்1 / எண்2
எண்_1 = int(input("முதல் எண்: "))
எண்_2 = int(input("இரண்டாவது எண்: "))
விடை = கூட்டல்(எண்_1, எண்_2)
print(விடை)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment