Submission #11673709


Source Code Expand

A, B = map(int, input().split())
T = A+B
if (T <= 24):
    print(T)
else:
    print(T-24)

Submission Info

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

Compile Error

./Main.cpp:1:1: error: ‘A’ does not name a type
 A, B = map(int, input().split())
 ^