/*2012-주어진 년도가 1999보다 작으면 1 크면 2*/
#include<cstdio>
int main(){
int age1;
scanf("%d", &age1);
int a, b, c;
a = 2012 - age1;
if(age1<14){
b = 3;
c = a - 2000;
}else if(age1<113){
b = 1;
c = a - 1900;
}else{
b = 1;
c = a - 1900;
}
printf("%d %d", c+1, b);
}
/* 비만도 계산 공식
* 표준몸무게
키에 따른 표준몸무게 공식
키가 150 미만일 때 (실제 키 - 100)
키가 150이상 160미만일 때 (실제 키 - 150) /2 + 50
키가 160 이상일 때 (실제 키 - 100) * 0.9
* 비만도에 따른 등급 판정
비만도 등급
10 이하 정상
10 초과 20 이하 과체중
20 초과 비만
비만도 = (실제 몸무게 - 표준몸무게) * 100 / 표준 몸무게*/
#include<cstdio>
int main(){
double height, weight;
scanf("%lf %lf", &height, &weight);
double pw=0;
double bm=0;
if(height<150){
pw=height-100;
}else if(150<=height && height<160){
pw=((height-150)/2)+50;
}else{
pw=(height-100)*0.9;
}
bm=((weight-pw)*100)/pw;
if(bm<=10){
printf("정상");
return 0;
}else if(10<bm && bm<=20){
printf("과체중");
return 0;
}else{
printf("비만");
return 0;
}
}
s = input()
print(s.count('('), s.count(')'))
복면산 1, 2, 3
#include<cstdio>
int main(){
int s, o, t;
for(int s=1; s<=9; s++){
for(int o=0; o<=9; o++){
for(int t=1; t<=9; t++){
if(2*(s*10+o)==t*100+o*11){
printf("%d+%d=%d\n", s*10+o, s*10+o, t*100+o*11);
}
}
}
}
}
#include<cstdio>
int main(){
int st, sq, tr;
for(st=1; st<=9; st++){
for(tr=0; tr<=9; tr++){
for(sq=1; sq<=9; sq++){
if((100*st+10*tr+sq)-(10*st+tr)==sq*11){
printf("%d-%d=%d", 100*st+10*tr+sq, 10*st+tr, sq*11);
}
}
}
}
}
#include<cstdio>//FORTY+TEN+TEN=SIXTY
int main(){
int E,F,I,T,N,O,S,Y,X,R;
for(F=1; F<=9; F++){
for(O=1; O<=9; O++){
for(R=1; R<=9; R++){
for(T=1; T<=9; T++){
for(Y=1; Y<=9; Y++){
for(S=1; S<=9; S++){
for(I=1; I<=9; I++){
for(Y=1; Y<=9; Y++){
if((10000*F+1000*O+100+10*R+Y)+2*(100*T+10)==10000*S+1000*I+100*X+10*T+Y){
printf("%d%d%d%d%d+%d%d%d+%d%d%d=%d%d%d%d%d", F, O, R, T, Y, T, E, N, T, E, N, S, I, X, T, Y);
}
}
}
}
}
}
}
}
}
}