Practice Contest

A practice Kattis Contest Do this to get ready for the one next week. You should do this contest to get ready for the midterm contest.

Here is the link: Kenyon118TrialContestFall2025

Start & End Times

Start Time2025-10-14 10:00 EDT
End time2025-10-20 10:00 EDT

Some hints:

How to get multiple inputs on a single line:
# taking three inputs at a time
x, y, z = input("Enter three values: ").split()

If the inputs are integers, you can use the int() function to convert each.

How to process a string one character at a time:
s=input("Enter a string: ")
for c in s:
  print(c)

Output:

Enter a string: Kenyon
K
e
n
y
o
n
Scroll to Top