251022
/*
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf("%d %d %d", a, a, a);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf("%d",a);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf("%d%%",a);
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()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%d %d", b, a);
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()
{
int a,b,c;
scanf("%d:%d:%d",&a,&b,&c);
printf("%d",b);
return 0;
}
*/
/**
출력을 어떻게 할건지? 지정
%f 소수점 아래 무조건 6자리 출력
%.2f 소수점 아래 2자리 출력 ( 3자리에서 반올림 )
%.1f 1 2
산술연산자
+ - * / %
*/
/*
#include <stdio.h>
int main()
{
float c;
scanf("%f",&c);
printf("%f",c*2);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float a,b;
scanf("%f %f",&a,&b);
printf("%.2f",a*b);
return 0;
}
*/




