/*
#include <stdio.h>
int main()
{
printf("Hello world!\n");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello,\nWorld!");
return 0;
}
; 세미콜론 -> 명령의끝에
std + io + h
std : standard 기본
io : input+output 입출력
// 포함해 기본입출력에대한 정보가 들어있는 파일
#include <stdio.h>
int main()
{
printf("\"c:\\test\"");
return 0;
}
정수 숫자 (소수점아래없는거)
실수 숫자(소수점아래있는거)
문자 키보드 한알
*************자료형*************************
정수 integer -> int 인트 %d
실수 floating point -> float 플로트 %f
문자 character -> char 캐릭터 %c
********************************************
이름이 a이고, 실수를 저장할수 있는 공간을 만들어주세요
실수 변수 a 선언
float a;
정수 변수 t 선언
int t;
char w;
2147483647
#include <stdio.h>
int main()
{
int k;
scanf("%d",&k); //정수변수 k에 정수를 입력하세요
printf("%d",k); // 정수 변수 k를 출력하세요
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char k;
scanf("%c",&k);
printf("%c",k);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float k, j, y, z, x;
scanf("%f %f",&k,&j);
printf("%f%f",k,j);
return 0;
}
*/
/*
#include <stdio.h
int main()
{
int k,g
scanf("%d%d",&k,&g)
printf("%d %d",k,g)
return 0;
}
*/
#include <stdio.h>
int main()
{
char k,g;
scanf("%c %c",&k,&g);
printf("%c %c,g,k);
return 0;
}