Created
May 9, 2022 00:25
-
-
Save muthu1809/de92408844eb5d382bf63843f456cf8a to your computer and use it in GitHub Desktop.
This file contains 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
எண்1 = int(input("எண்ணைச் சொல்லுங்கள்: ")) | |
எண்2 = int(input("எண்ணைச் சொல்லுங்கள்: ")) | |
வகுக்கும்_எண் = 2 | |
if எண்1<எண்2: | |
சின்ன_எண் = எண்1 | |
elif எண்2<எண்1: | |
சின்ன_எண் = எண்2 | |
while வகுக்கும்_எண்<=சின்ன_எண்: | |
if எண்1%வகுக்கும்_எண்==0 and எண்2%வகுக்கும்_எண் ==0: | |
print("பொது வகுத்தி", வகுக்கும்_எண்) | |
வகுக்கும்_எண்+=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment