Submission #5562355


Source Code Expand

a, b = (int(x) for x in input().split())
# print(type(a), type(b))
print(a if a > b else
      b if a < b else
      "error")

Submission Info

Submission Time
Task A - 正直者
User attokoodaa
Language C++14 (GCC 5.4.1)
Score 0
Code Size 131 Byte
Status CE

Compile Error

./Main.cpp:2:3: error: invalid preprocessing directive #print
 # print(type(a), type(b))
   ^
./Main.cpp:1:1: error: ‘a’ does not name a type
 a, b = (int(x) for x in input().split())
 ^