Submission #1833817


Source Code Expand

import math

X=int(input())

res=(1 if X <= 5 else math.ceil(X/11*2))

print(res)

Submission Info

Submission Time
Task C - X: Yet Another Die Game
User ty70
Language C++14 (GCC 5.4.1)
Score 0
Code Size 87 Byte
Status CE

Compile Error

./Main.cpp:1:1: error: ‘import’ does not name a type
 import math
 ^