/*
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}
*/
/*
#include<string.h>
#include<stdio.h>
int main()
{
char a[31],stack[31];
int i,n,top=0,sum=0;
scanf("%s",a);
n=strlen(a);
for(i=0;i<n;i++)
{
if(a[i]=='('&&a[i+1]==')')
{
stack[top]=2;
if(a[i])
{
stack[top]=stack[top]*2'
}
}
else if(a[j]=='['&&a[i+1]==']')
{
stack[top]=3;
}
}
}
//(1) ‘()’ 인 괄호열의 값은 2이다.
//(2) ‘[]’ 인 괄호열의 값은 3이다.
//(3) ‘(X)’ 의 괄호값은 2×값(X) 으로 계산된다.
//(4) ‘[X]’ 의 괄호값은 3×값(X) 으로 계산된다.
//(5) 올바른 괄호열 X와 Y가 결합된 XY의 괄호값은 값(XY) = 값(X)+값(Y) 로 계산된다.
*/
/*
#include <stdio.h>
int main()
{
int i;
for(i=1;i<=19;i++)
{
printf ("hello");
}
printf ("hello ");
for(i=1; i<=30; i++)
{
printf ("world");
}
}
*/
//https://codeup.kr/status.php?user_id=hayul0929