Submission

Status:

PP--PPPP-P

Subtask/Task Score:

70/100

Score: 70

User: SonnyHappy108

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

Language: cpp

Time: 0.002 second

Submitted On: 2026-04-11 10:07:11

#include <bits/stdc++.h>
using namespace std;
//done : 0
int main(){
	int i,j;
	int A,B,x;
	cin >> A >> B >> x;
	cout << to_string(A*B)[x-1];
}