#include <stdio.h>

int main() {
    int num,id[30]={0};
    for (int i=0; i<28; i++)  {
        scanf("%d",&num);
        id[num-1]=1;
    }
    for (int i=0; i<30;i++){
        if (id[i]==0) printf("%d\n",i+1);
    }
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: