#include<stdio.h>
void main(){
int peachs=1;
for(int i=1; i<10; i++)
peachs=(peachs+1)*2;
printf("%d",peachs);
}
/**************************************************************
Problem: 1082
User: admin
Language: C
Result: Runtime Error
****************************************************************/