Compare commits

...
1 Commits
Author SHA1 Message Date
Danil ffcc01b6fd full programm 2026-04-04 12:06:19 +03:00
+4 -1
View File
@@ -15,7 +15,10 @@ def is_armstrong(a):
if __name__ == '__main__': if __name__ == '__main__':
print(is_armstrong(153))
print("is_armstrong(153) - ", is_armstrong(153))
print("is_armstrong(10) - ", is_armstrong(10))