#include<stdio.h>


int main(int a, int b)

{

if (a == 1) 

b = 0;

if (a <= 100){

b += a++;

main(a, b);

}

else if (a > 100)

printf("%d\n", b);

        return 0;

}


존나 잘됨 ㅋㅋ


I'm your little butterfly. Green, black and blue make the colors in the sky!