Archived
1
0
Fork 0
This repository has been archived on 2022-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
mipt_clang/duck/keygen.c
2022-04-16 23:58:27 +03:00

9 lines
128 B
C

#include <stdio.h>
int main() {
int card;
const int c = 0x1d60;
scanf("%d", &card);
printf("%d\n", c - card);
return 0;
}