mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
19 lines
313 B
C++
19 lines
313 B
C++
|
#include<stdio.h>
|
||
|
int main()
|
||
|
{
|
||
|
int i;
|
||
|
scanf("%d",&i);
|
||
|
if(i!=0)
|
||
|
{
|
||
|
while(i!=0)
|
||
|
{
|
||
|
if(i%2==0)
|
||
|
printf("8600\n");
|
||
|
else
|
||
|
printf("ailyanlu\n");
|
||
|
scanf("%d",&i);
|
||
|
}
|
||
|
}
|
||
|
return 0;
|
||
|
}
|