#include <stdio.h> #include <math.h> int main(){ int first = 0; int second = 1; int and = first + second; int num = 0; scanf("%d", &num); while(1){ if(num == and){ printf("%d\n",0); break; } e...