/*
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello, World!");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello,\nWorld!");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"c:\\test\"");
return 0;
}
# include <stdio.h>
int main()
{
printf("special characters\n.");
printf("[\\n,\\\",\\\\] is very important");
return 0;
}
자료형
변수선언 입출력
정수 int 인트 %d
실수 float 플로트 %f
문자 char 캐릭터 %c
이름이 apple 이고 정수를 저장할수 있는 변수 선언
#inclde <stdio.h>
int apple;
이름은 box 이고 실수 변수 선언
float box;
char dog;
이름이 apple인 정수 변수에 정수 하나를 저장
scanf("%d",&apple);
이름이 box인 실수 변수에 실수 하나 저장
scanf("%f",&box);
*/
/*
#include <stdio.h>
int main()
{
int g;
scanf("%d",&g);
printf("%d",g);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char j;
scanf("%c",&j);
printf("%c",j);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float s;
scanf("%f",&s);
printf("%f",s);
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 a,b;
scanf("%c %c",&b,&a);
printf("%c %c",a,b);
return 0;
}
*/
#include <stdio.h>
int main()
{
int a;
scanf("%d %d %d",&a,&a,&a);
printf("%d %d %d",a,a,a);
return 0;
}