// Clause: 7.21.6.2 — If there are fewer pointers than conversion specifiers that require them, behavior is undefined.
#include <stdio.h>
int main(void){
    int a,b;
    scanf("%d %d %d", &a, &b); // UB: missing pointer for third %d
    return 0;
}
