Submission

Status:

-P---P----

Subtask/Task Score:

20/100

Score: 20

User: Krovmoroz

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

Language: cpp

Time: 0.002 second

Submitted On: 2025-11-04 16:08:02

#include <bits/stdc++.h>
using namespace std;

int A,B,x;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    cin >> A >> B >> x;
    string s = to_string(A*B);
    cout << s[++x];
}