Q

codeup 1065

codeup 1065번 문제

codeup 1065번 문제


C code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdio.h>

int main(void)
{
unsigned int a,b,c;

scanf("%d %d %d",&a,&b,&c);

if(a%2 == 0)
printf("%d\n",a);

if(b%2 == 0)
printf("%d\n",b);

if(c%2==0)
printf("%d\n",c);

return 0;
}