Submission

Status:

PPPPPPPPPP

Subtask/Task Score:

100/100

Score: 100

User: Nitro_Legacy

Problemset: เลขหลักของผลคูณ

Language: python

Time: 0.014 second

Submitted On: 2026-08-03 15:19:56

a = int(input())
b = int(input())
x = int(input())
prod = a * b
if x >= 0 and  x <= len(str(prod)) :
    print(str(prod)[x - 1])
else :
    print("_")