Untitled
unknown
plain_text
10 months ago
198 B
3
Indexable
def compute():
department = input()
studentid = input()
name = input()
print(f'Department: {department}')
print(f'Student ID: {studentid}')
print(f'Name: {name}')
compute()
Editor is loading...
Leave a Comment