/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"!@#$%%^&*()\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"c:\\test\"");
return 0;
}
*/
/*
자료형 data type
정수
int %d
실수
float %f
문자
char %c
integer 정수
floating point
character
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf("%d",a);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int n;
scanf("%d",&n);
printf("%d",n);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char x;
scanf("%c",&x);
printf("%c",x);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float x;
scanf("%f",&x);
printf("%f",x);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
printf("%d %d",a,b);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char x,y;
scanf("%c %c",&x,&y);
printf("%c %c",y,x);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float x;
scanf("%f",&x);
printf("%.2f",x);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int c;
scanf("%d",&c);
printf("%d %d %d",c,c,c);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int x,y;
scanf("%d:%d",&x,&y);
printf("%d:%d",x,y);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int x,y,z;
scanf("%d:%d:%d",&x,&y,&z);
printf("%d",y);
return 0;
}
정수
int %d
long long int %lld
강제형변환
실수
float %f
double %lf
문자
char %c
2147483647
*/
/*
#include <stdio.h>
int main()
{
int x,y;
scanf("%d %d",&x,&y);
printf("%lld",(long long int)x+y);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
double d;
scanf("%lf",&d);
printf("%.11lf",d);
return 0;
}*/
/*
#include <stdio.h>
int main()
{
long long int x;
scanf("%lld",&x);
printf("%lld",x);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int x,y;
scanf("%d %d",&x,&y);
printf("%lld",(long long int)x+y);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
long long int x,y;
scanf("%lld %lld",&x,&y);
printf("%lld",x+y);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf("%d",-a);
return 0;
}
산술연산자
+ - * / %
int a,b;
scanf("%d %d",&a,&b);
printf("%d",a-b);
printf("%d",a*b);
printf("%d",a/b);
printf("%d",a%b);
5/2 2 정수 몫
5%2 1 정수 나머지
(float)5/2 실수 2.5
5.0/2 2.5
#include <stdio.h>
int main()
{
printf("%d",5/2);
return 0;
}
*/