#include<stdio.h> void main() { char a[100]; gets(a); int i; i=0; while(a[i]!='\0') { if(a[i]!='1') { puts(a[i]); } i++; } }