Run id: 134020

Main.cc: In function 'int main()':
Main.cc:8:20: error: 'b' was not declared in this scope
         if(a=='A'||b=='E'||c=='I'||d=='O'||e=='U') cout<<"Upper Vowel";
                    ^
Main.cc:8:28: error: 'c' was not declared in this scope
         if(a=='A'||b=='E'||c=='I'||d=='O'||e=='U') cout<<"Upper Vowel";
                            ^
Main.cc:8:36: error: 'd' was not declared in this scope
         if(a=='A'||b=='E'||c=='I'||d=='O'||e=='U') cout<<"Upper Vowel";
                                    ^
Main.cc:8:44: error: 'e' was not declared in this scope
         if(a=='A'||b=='E'||c=='I'||d=='O'||e=='U') cout<<"Upper Vowel";
                                            ^
Main.cc:11:20: error: 'b' was not declared in this scope
         if(a=='a'||b=='e'||c=='i'||d=='o'||e=='u') cout<<"Lower Vowel"; 
                    ^
Main.cc:11:28: error: 'c' was not declared in this scope
         if(a=='a'||b=='e'||c=='i'||d=='o'||e=='u') cout<<"Lower Vowel"; 
                            ^
Main.cc:11:36: error: 'd' was not declared in this scope
         if(a=='a'||b=='e'||c=='i'||d=='o'||e=='u') cout<<"Lower Vowel"; 
                                    ^
Main.cc:11:44: error: 'e' was not declared in this scope
         if(a=='a'||b=='e'||c=='i'||d=='o'||e=='u') cout<<"Lower Vowel"; 
                                            ^