Untitled

 avatar
unknown
plain_text
a month ago
198 B
1
Indexable
def compute():
    department = input()
    studentid = input()
    name = input()
    print(f'Department: {department}')
    print(f'Student ID: {studentid}')
    print(f'Name: {name}')

compute()
Leave a Comment