Created
April 19, 2020 08:06
-
-
Save gauravkoradiya/e11c42e00ce5f493888ea6fe368a3180 to your computer and use it in GitHub Desktop.
Codechef_DSA01 - Life, the Universe, and Everything - TEST
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
"""https://www.codechef.com/LRNDSA01/problems/TEST""" | |
def main(): | |
"""if input is 42 than stop the processing""""" | |
x = int(input().strip()) | |
while x != 42 : | |
print(x) | |
x = int(input().strip()) | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment