제가 00a26문제를 풀었습니다

그래서 저는 소스를 이리 적었습니다

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int a;
 freopen("input.txt", "r", stdin);
 freopen("output.txt", "w", stdout);
 scanf("%d", &a);
 printf("Hello KOI! %d", a);
}

값은 제대로 나오던데 채점기에 돌려보니 All No Good입니다(...)

소스 문제를 찾아 주시면 감사하겠습니다