Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

HO1015 - Шугаман 6

Өгсөн 4 оронтой тооны голын хоёр цифрийн үржвэрийг ол.

Input

4 оронтой нэг тоо өгөгдөнө.

Output

Үр дүнг хэвлэ.

Example

Input:
8654

Output:
30

Нэмсэн:munkhbat
Огноо:2013-01-12
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:Бүгд дараах хэлүүдээс бусад: ASM64 NCSHARP JULIA PYPY3

hide comments
2023-03-13 11:34:51
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a, b, c, d;
scanf("%d" ,&a);
printf("%d" ,((a%100)/10)*((a/100)%10));
} munji
2022-11-09 02:37:57
#include<bits/stdc++.h>
using namespace std;
int main (){
int a, b, c, d, e, f;
cin>>a;
b=a/100%10;
c=a/10%10;
f=b*c;
cout<<f<<endl;
}
2022-10-21 05:41:42
#include<bits/stdc++.h>
using namespace std;
int main (){
int a, b, c, d, e, f;
cin>>a;
b=a/100%10;
c=a/10%10;
f=b*c;
cout<<f<<endl;
}

2022-10-21 05:39:22
l


2022-10-20 07:50:28
#include<bits/stdc++.h>
using namespace std;
int main (){
int a, b, c, d, e, f, g;
cin>>a;
b=a%100;
c=b/10;
d=a/100;
e=d%10;
f=c*e;
cout<<f<<endl;
}
2022-09-20 06:06:11


Last edit: 2022-09-26 06:55:27
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.