SOLUTION OF URI 2006 URI SOLUTIONS // Solution of 2006 Identifying Tea // (Mahmud_Jamil) BRUR #include <stdio.h> int main() { int n, m , i, cnt=0; scanf("%d", &n); for(i=0; i<5; i++) { scanf("%d", &m); if(m==n) cnt++; } printf("%d\n", cnt); return 0; } Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook Related Posts:SOLUTION OF URI 1847 // Solution of 1847 Welcome to the Winter! // (Mahmud_Jamil… Read MoreSOLUTION OF URI 1983 // Solution of 1983 The Chosen // (Mahmud_Jamil) BRUR #incl… Read MoreSOLUTION OF URI 1865 // Solution of 1865 Mjölnir // (Mahmud_Jamil) BRUR #include … Read MoreSOLUTION OF URI 1187 // Solution of 1187 Top Area // (Mahmud_Jamil) BRUR #include <… Read MoreSOLUTION OF URI 1858 // Solution of 1858 Theon's Answer // (Mahmud_Jamil) BRUR #include… Read More