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
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
2019-03-25 03:59:51
#include <iostream>
using namespace std;
main()
{
int a,c,d,e;
cin>>a;
c=a%10;
d=a/10;
e=c*d;
cout<<("%d",e );
}
2019-02-27 06:24:30
sainuuu
2019-02-15 06:51:13
#include<bits/stdc++.h>
using namespace std;
long long i,k,l,j,n,m,s,a[35][35];
int main(){
cin>>n; a[0][0]=1;
for(i=1;i<=30;i++)
for(j=1;j<=i;j++)
{ s=0;
for(k=1;k<=9; k++)
if (i-k>=0) s+=a[j-1][i-k];
a[j][i]=s;
}s=0;
for(i=1; i<=n; i++)
s+=a[i][n];
cout<<s;
}
2019-01-15 03:19:58
#include<bits/stdc++.h>
main(){
int a,b,c,s;
scanf("%d",&a);
b=a/10;
c=a%10;
s=c*b;
printf("%d",s);
}
2018-11-24 15:55:59
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main()
{
int a,b,s;
scanf("%d%d",&a,&b);
s=a*b;
printf("%d\n",s);
}
2018-03-05 07:05:28
whyy
2018-02-06 09:44:15
#include<stdio.h>
main()
{
int a,b,c,s;
scanf("%d",&a);
c=a%10;
b=a/10;
s=c*b;
printf("%d\n",s);
}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.