Created
April 1, 2025 11:33
-
-
Save muthu1809/2fec409a638f2611f96197f048367ef0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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