#include <stdio.h> int main () { int a; scanf("%d", &a); if (a == 1234) { printf("答对了"); } else { printf("答错了"); } return 0; }