Skip to content

Commit 9b58ecb

Browse files
Create acronym_formed.py
Signed-off-by: Ruslan Senatorov <55090151+ruslansenatorov@users.noreply.github.com>
1 parent 6326ee2 commit 9b58ecb

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

task/10_2/acronym_formed.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from typing import List
2+
3+
4+
def main() -> None:
5+
names: List[str] = [input().strip() for _ in range(4)]
6+
answer = ''.join(name[0].upper() for name in names)
7+
print(answer)
8+
9+
10+
if __name__ == '__main__':
11+
main()

0 commit comments

Comments
 (0)