u64.c 86 Bytes
Newer Older
longpanda's avatar
longpanda committed
1
2
3
4
5
6
7
8
#include <stdio.h>

int main(void)
{
	u64 n;
	printf("%d\n", (int) n+2);
	return 0;
}