Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
goelp14
GitHub Repository: goelp14/easyctf-iv-problems
Path: blob/master/liar/getflag.c
671 views
1
#include <stdio.h>
2
3
int main() {
4
int n;
5
scanf("%d", n);
6
// hey that wasn't so hard!
7
if (n == 1337)
8
printf("the flag is easyctf{that's_way_too_easy}");
9
}
10