Submission #1243959


Source Code Expand

a, b = map(int, input().split(" "));
print( (a+b) % 24);

Submission Info

Submission Time
Task A - Remaining Time
User tokoharu
Language C++14 (GCC 5.4.1)
Score 0
Code Size 59 Byte
Status CE

Compile Error

./Main.cpp:2:1: error: ‘a’ does not name a type
 a, b = map(int, input().split(" "));
 ^
./Main.cpp:3:6: error: expected constructor, destructor, or type conversion before ‘(’ token
 print( (a+b) % 24);
      ^