/*
#include <stdio.h>
//standard input output. header
int main()
{
printf("hfhfjghkhj");
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
printf("Hello");
return 0;
}
\n
*/
/*
#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("\"Hello World\"");
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
printf("\"!@#$%%^&*()\"");
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"");
return 0;
}
자료형
정수 : 자연수, 0 -자연수
실수 : 소수
문자 : 'a' 'b' ')'
**********************꼭 외워야하는부분!!
정수 int %d
실수 float %f
문자 char %c
***********************
정수 Integer -> int 인트
실수 floating point -> float 플롯
문자 character -> char 캐릭터
scanf받을때는 &주소연산자
#include<stdio.h>
int main()
{
int a; //정수를 저장할 변수 a 선언
scanf("%d",&a); //정수 a에 입력
printf("%d",a); //a변수 출력
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int n;
scanf("%d",&n);
printf("%d",n);
return 0;
}
*/
#include<stdio.h>
int main()
{
int t,y;
scanf("%d %d", &t,&y);
printf("%d %d", t,y);
return 0;
}



