Created
April 1, 2025 11:17
-
-
Save muthu1809/0a0a0f5fcf1d833e26e025764eba2c9b 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 சர்க்கரைப்பொங்கல்_வைப்போம்(அரிசி_அளவு, சர்க்கரை_அளவு, நீர்_அளவு): | |
print('சர்க்கரைப் பொங்கல் வைக்கப் போகிறோம்') | |
print('அரிசி', அரிசி_அளவு) | |
print('சர்க்கரை', சர்க்கரை_அளவு) | |
print('நீர்', நீர்_அளவு) | |
பொங்கல் = அரிசி_அளவு + சர்க்கரை_அளவு + நீர்_அளவு | |
return பொங்கல் |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment