Cookies

来源:互联网 发布:产业链大数据分析系统 编辑:程序博客网 时间:2024/06/01 09:38

Description

Fangy collects cookies. Once he decided to take a box and put cookies into it in some way. If we take a squarek × k in size, divided into blocks1 × 1 in size and paint there the main diagonal together with cells, which lie above it, then the painted area will be equal to the area occupied by one cookiek in size. Fangy also has a box with a square base2n × 2n, divided into blocks1 × 1 in size. In a box the cookies should not overlap, and they should not be turned over or rotated. See cookies of sizes2 and 4 respectively on the figure:



To stack the cookies the little walrus uses the following algorithm. He takes out of the repository the largest cookie which can fit in some place in the box and puts it there. Everything could be perfect but alas, in the repository the little walrus has infinitely many cookies of size 2 and larger, and there are no cookies of size1, therefore, empty cells will remain in the box. Fangy wants to know how many empty cells will be left in the end.

Input

The first line contains a single integer n (0 ≤ n ≤ 1000).

Output

Print the single number, equal to the number of empty cells in the box. The answer should be printed modulo106 + 3.

Sample Input

Input
3
Output
9

Sample Output

Hint

If the box possesses the base of 23 × 23 (as in the example), then the cookies will be put there in the following manner:










#include <stdio.h>#include <string.h>#include <math.h>int main(){    int n, i, a = 1;    long long m = 1;    scanf("%d", &n);        for (i = 1; i < 7; i++)    {        a = a * 10;    }    for (i = 1; i < n; i++)    {        m = m * 3;         m = m % (a + 3);    }    if (n == 0)        printf("1\n");    else        printf("%lld\n", m);    return 0;}


0 0