/*
#include <stdio.h>
int main()
{
return 0;
}
1.
printf("hello");
2.
자료형
정수 int %d (-2147483648 ~ +2147483647)
long long int %lld
실수 float %f
double %lf
문자 char %c
산술연산자
+ - * / %
printf("%d",5/2); 2
정수/정수 정수 몫
% 나머지연산자
비교연산자
> < >= <= == !=
a>b 1 or 0
a==b
a=b; a에 b를 집어넣으세요 (대입)
논리연산자
! 아니다 !a
&& 그리고
|| 또는
삼항연산
!a
a+b a>b a&&b
(조건식) ? 조건식이참일때의값 : 조건식이거짓일때의값
조건식 : 결과가 참 또는 거짓
printf("%d", 123>456 ? 50 : 60); //60
int a, b, c;
scanf("%d %d", &a, &b);
1번방법
c = a>b ? a : b; //a,b중 큰 수를 c에 대입하세요
printf("%d",c);
2번방법
printf("%d",a>b ? a : b);
c = a<b ? a : b; //a,b 중 작은 수를 c에 대입하세요
#include <stdio.h>
int main()
{
int a,s,d;
scanf("%d %d",&a,&s);
printf("%d",a>s?a:s);
}
#include <stdio.h>
int main()
{
int q,w,e,r,t;
scanf("%d %d %d",&q,&w,&e);
r=q<w?q:w;
t=r<e?r:e;
printf("%d",t);
return 0;
}
if(조건식)
{
}
else if(조건식)
{
}
else
{
}
#include <stdio.h>
int main()
{
int f;
scanf("%d",&f);
if(f<10)
{
printf("small");
}
return 0;
}
#include <stdio.h>
int main()
{
int f;
scanf("%d",&f);
if(10>f)
{
printf("small");
}
else
{
printf("big");
}
return 0;
}
*/
#include <stdio.h>
int main()
{
int f,j;
scanf("%d %d",&f,&j);
}



