Submission

Status:

PP--PPPP-P

Subtask/Task Score:

70/100

Score: 70

User: rice_ot

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

Language: cpp

Time: 0.003 second

Submitted On: 2025-10-14 10:34:31

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

int main(){

    int a, b, x; cin>>a>>b>>x;
    a = a*b;
    string s = to_string(a);
    cout<<s[x-1];
}