Created
August 11, 2020 15:38
-
-
Save aliarain/623faafb70cc458c84aca675b06dc749 to your computer and use it in GitHub Desktop.
Problems For Cousera 1/n
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 sum_digits(f_digit, s_digit): | |
return f_digit +s_digit | |
if __name__ = '__main__': | |
a,b =map(int , input().split()) | |
print(sum_digit(a,b)) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment