Untitled

Anonymous
plain_text
01/10/2025 4:31 AM
264 B
10
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