Codeforces Round #429 (Div. 2), problem: (B) Godsend Solution In C/C++

#include<cstdio>
int main()
{
int n;int t;scanf(“%d”,&n);
for(int i=1;i<=n;i++)
{scanf(“%d”,&t);
if(t%2)
{
printf(“First”);
return 0;
}
}
printf(“Second”);
return 0;
}

Leave a Reply

Your email address will not be published. Required fields are marked *