Submission

Status:

PP--PPPP-P

Subtask/Task Score:

70/100

Score: 70

User: Some1258

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

Language: cpp

Time: 0.002 second

Submitted On: 2026-07-20 08:15:55

#include<bits/stdc++.h>
using namespace std;
int main(){
    int x,y;
    cin>>x>>y;
    int z=(x*y);
    string t=to_string(z);
    int a;
    cin>>a;
    cout<<t[a-1];
}