/ SeriousOJ /

Record Detail

Compile Error

foo.c:1:18: error: expected expression before 'int'
    1 | a, b, c, d = map(int, input("").split())
      |                  ^~~
foo.c:3:1: error: expected ',' or ';' before 'print'
    3 | print(min(a, b, c, d))
      | ^~~~~

Code

a, b, c, d = map(int, input("").split())

print(min(a, b, c, d))
print(max(a, b, c, d))

Information

Submit By
Type
Submission
Problem
P1022 Minmax
Contest
Brain booster - 1
Language
C99 (GCC 13.2.0)
Submit At
2023-12-31 14:50:37
Judged At
2024-10-03 14:05:59
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes