/*
#include <stdio.h>
int main()
{
printf("12345");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello\nWorld");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\'Hello\'");
return 0;
}
*/
/*
#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("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[\\n,\\\",\\\\] is very important.");
return 0;
}
*********자료형**************
선언 입출력
정수 int %d
실수 float %f
문자 char %c
****************************
정수 integer -> int
실수 floating point -> float
문자 character -> char(캐릭터)
*************************
<<변수 선언>>
1. 이름이 a이고, 정수를 저장하는 변수 하나 만들기
= 정수 변수 a 선언
int a;
2. 실수 변수 b 선언
float b;
3. 문자 변수 c 선언
char c;
정수 변수 a, b, c 세 개 선언
int a, b, c;
************************
<< 변수 출력 >>
1. 정수 변수 a에 들어있는 값을 출력하기
printf("%d",a);
2. 실수 변수 b 출력하기
printf("%f",b);
*************************
<<변수 입력>>
1. 변수 a에 정수 입력 받기
scanf("%d",&a);
2. 변수 b에 실수 입력 받기
scanf("%f",&b);
#include <stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf("당신이 입력하신 숫자는 %d입니다.",a);
return 0;
}
*/
/*
int main()
{
int n;
scanf("%d",&n);
printf("%d", n);
return 0;
*/
/*
int main()
{
char x;
scanf("%c",&x);
printf("%c",x);
}
*/
/*
int main()
{
float x;
scanf("%f",&x);
printf("%f",x);
}
*/
#include <stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf("%d %d %d", a, a, a);
return 0;
}