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.|

RGB7009 - 2 оронтой тоо

Өгөгдсөн 2 оронтой тооны цифрүүдийн үржвэрийг ол.

Input

2 оронтой тоо өгөгдөнө.

Output

Нэгж ба аравтын орны цифрүүдийн үржвэр.

Example

Input:
27
Output:
14

Нэмсэн:Bataa
Огноо:2011-05-10
Хугацааны хязгаарлалт:0.400s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:ADA95 ASM32 BASH BF C NCSHARP CSHARP C++ 4.3.2 CPP C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO JULIA LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON PYPY3 PYTHON3 RUBY SCALA SCM guile ST TCL WHITESPACE

hide comments
2021-10-25 04:16:27
...
2021-03-11 11:26:08
hh
2020-10-21 09:20:10
#include <iostream>
using namespace std;

int main()
{
int a,b,c,d;
cin>>a;
b=a/10;
c=a%10;
d=b*c;
cout<<d<<endl;
return 0;
}
2020-10-21 09:19:39
#include <iostream>
using namespace std;

int main()
{
int a,b,c,d;
cin>>a;
b=a/10;
c=a%10;
d=b*c;
cout<<d<<endl;
return 0;
}
genden
2020-09-26 12:00:19
#include <stdio.h>

main()
{
int a, b, c, d, e, f, g;
scanf("%d",&a);
c=a%100;
f=a%10;
d=c-f;
e=d/10;
g=f*e;
printf("%d",g);
}
2020-01-23 05:11:03
#include <cstdio>
int main()
{
int a , b;
scanf("%d",&a);
b = a / 10 % 10;
printf("%d",b);
}
2020-01-23 05:10:49
#include <cstdio>
int main()
{
int a , b , c;
scanf("%d",&a);
b = a / 10;
c = a%10;
printf("%d",c*b);
}
2020-01-16 05:31:12
some1 help me
2019-10-26 06:26:35
#include <cstdio>
int main()
{
int a , b , c;
scanf("%d",&a);
b = a / 10;
c = a%10;
printf("%d",c*b);
}
SUPER
2019-08-13 05:56:18
teneg
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.