/*
산술연산자 + - * / %
비교연산자 > < >= <= == != -> == vs = , 결과는 1 또는 0으로 나온다
논리연산자 ! && ||
>> 논리값( 0 또는 1의 값)으로만 연산
! not 아니다
&& and 그리고
|| or 또는
int a=1;
printf("%d",!a); // !a a를 반대 논리값으로 바꾸는거
int a=5;
int b=10;
퀘스트1 . 왼손드세요 그리고 오른손드세요
printf("%d", a>0 && b==10 ); // 1
x y x&&y
0 0 0
0 1 0
1 0 0
1 1 1
///////////////////////////////////////
int a=5;
int b=10;
퀘스트2. 왼손드세요 또는 오른손드세요
1 0
printf("%d", a>0 || b==0 ); // 1
x y x||y
0 0 0
0 1 1
1 0 1
1 1 1
////////////////////////////////////
x y x&&y !(x&&y)
0 0 0 1
0 1 0 1
1 0 0 1
1 1 1 0
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf("%d",!a);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a,s;
scanf("%d %d",&a,&s);
printf("%d",a&&s);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a,s;
scanf("%d %d",&a,&s);
printf("%d",a||s);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a,s;
scanf("%d %d",&a,&s);
printf("%d",!(a||s));
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a,s;
scanf("%d %d",&a,&s);
printf("%d",(!a&&s)||(!a||s));
return 0;
}
삼항연산자 (3항연산)
!a 단항연산자 or 1항연산자
a+b a>b a&&b 다항연산자 or 2항연산자
? : 다항연산자 or 3항연산자
< 둘 중 큰수 또는 둘 중 작은 수?를 구할때 > 미니조건문
(조건식) ? ( 조건식이 1일때의 값 ) : ( 조건식이 0일때의 값 )
조건식: 결과가 1 또는 0으로 나오는 식
printf("%d", 123>456 ? 100 : 500 ); // 500
1. 둘 중 큰 수 출력
printf("%d", a>b ? a : b );
2. 둘 중 작은 수 출력
printf("%d", a<b ? a : b );
c = a>b?a:b ; // c에 둘 중 큰 수를 대입하세요
3. 세 수 중에 가장 큰 수 출력
(a b 둘 중 큰 수 ) c 둘 중 큰수 -> 셋 중 가장 큰 수
a>b>c (x)
*/
/*
#include <stdio.h>
int main()
{
int a,s;
scanf("%d %d",&a,&s);
printf("%d",a>s?a:s);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a,s,d;
scanf("%d %d %d",&a,&s,&d);
printf("%d",(a<s?a:s) < d ?(a<s?a:s):d);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a,s;
scanf("%d %d",&a,&s);
printf("%d",a&&s);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf("%d"!a);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a,s;
scanf("%d %d",&a,&s);
printf("%d",a||s);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a,s;
scanf("%d %d",&a,&s);
printf("%d",a>s?a:s);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a,s,d;
scanf("%d %d %d",&a,&s,&d);
printf("%d",(a<s?a:s)<d?(a<s?a:s):d);
return 0;
}
*/
#include <stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf("%d",a*24);
return 0;
}