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

RGB7209 - a тооны n зэрэг

Өгөгдсөн тооны n зэргийг ол.

Input

Нэг мөрөнд Int төрлийн эерэг 2  тоо зайгаар тусгаарлагдан өгөгдөнө.

Output

an

Example

Input:
3 4

Output:
81

Нэмсэн:Bataa
Огноо:2011-06-16
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт: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
2022-03-26 06:39:21
Zaluuusaaa i am gay
2022-01-13 06:46:44
lol
2021-10-19 12:36:40
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int r = 1;
int a = sc.nextInt();
int n = sc.nextInt();
while (n != 0) {
r*=a;
n--;
}
System.out.println(r);
}
bi solongos hel surmargui bna
2021-05-31 18:19:46
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int a,n,i,s;
cin>>a>>n;
s=pow(a,n);
cout<<s;
}
2021-03-16 13:08:03
#include <bits/stdc++.h>
using namespace std;
int main(){
int a, b, k;
cin >> a >> b;
k=a;
b--;
while(b--){
a*=k;
}
cout << a;
}

dawtaltaar bod suguudaa
2021-03-16 13:06:58
#include <bits/stdc++.h>
using namespace std;
int main(){
int a, b, c=1,d, k;
cin >> a >> b;
k=a;
b--;
while(b--){
a*=k;
}
cout << a;
}
2021-02-27 09:24:41
#include<stdio.h>
#include<math.h>
main()
{
int a,b;
scanf("%d %d",&a,&b);
printf("%.0f",pow(a,b));
}
amjilt uursduu ehleed oroldoj vzeere <3
2020-10-28 09:39:22
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int a,v,n;
cin>>a>>n;
v=pow(a, n);
cout<<v<<endl;
return 0;
}
2020-01-23 05:43:46
#include <iostream>
#include <cmath>
using namespace std;
int main() {
int a,n,i,s;
cin>>a>>n;
s=pow(a,n);
cout<<s;
}
2020-01-23 05:14:08
#include <iostream>
#include <cmath>
using namespace std;
int main() {
int a,n,i,s;
cin>>a>>n;
s=pow(a,n);
cout<<s;
}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.