delete pics to save space

This commit is contained in:
2023-08-03 09:22:52 +08:00
commit de60cd6ed4
1334 changed files with 66221 additions and 0 deletions

10
1.1634.cpp Normal file
View File

@ -0,0 +1,10 @@
#include<cstdio>
typedef long long LL;
LL sum=1,x; int n;
int main()
{
scanf("%lld%d",&x,&n);
while(n-->0) sum=sum+sum*x;
printf("%lld\n",sum);
return 0;
}