Ops logs follow a shape. Given one log line on stdin in the format:
DATE TIME LEVEL message...
print only the LEVEL (the third field).
Example input:
2026-08-12 10:31:07 ERROR db timeout after 3000ms
Expected output:
ERROR
Hint: input().split() gives you the fields; remember indexes start at 0.