#include using namespace std; int main(int argc, char** argv) { string a; cout << "Podaj litere: " << endl; cin >> a; if(a=="a"){ cout << "A jak Andrzej" << endl; } if(a=="A"){ cout << "A jak Andrzej" << endl; } if(a=="b"){ cout << "B jak Brajan" << endl; } if(a=="B"){ cout << "B jak Brajan" << endl; } if(a=="c"){ cout << "C jak Celina" << endl; } if(a=="C"){ cout << "C jak Celina" << endl; } if(a=="d"){ cout << "D jak Damian" << endl; } if(a=="D"){ cout << "D jak Damian" << endl; } if(a=="e"){ cout << "E jak Ewelina" << endl; } if(a=="E"){ cout << "E jak Ewelina" << endl; } if(a=="f"){ cout << "F jak Franklin" << endl; } if(a=="F"){ cout << "F jak Franklin" << endl; } if(a=="g"){ cout << "G jak Grazyna" << endl; } if(a=="G"){ cout << "G jak Grazyna" << endl; } if(a=="h"){ cout << "H jak Henryk" << endl; } if(a=="H"){ cout << "H jak Henryk" << endl; } if(a=="i"){ cout << "I jak Irena" << endl; } if(a=="I"){ cout << "I jak Irena" << endl; } if(a=="j"){ cout << "J jak Jakub" << endl; } if(a=="J"){ cout << "J jak Jakub" << endl; } if(a=="k"){ cout << "K jak Krystyna" << endl; } if(a=="K"){ cout << "K jak Krystyna" << endl; } if(a=="l"){ cout << "L jak Lucyna" << endl; } if(a=="L"){ cout << "L jak Lucyna" << endl; } if(a=="m"){ cout << "M jak Mateuszek" << endl; } if(a=="M"){ cout << "M jak Mateuszek" << endl; } if(a=="n"){ cout << "N jak Natalia" << endl; } if(a=="N"){ cout << "N jak Natalia" << endl; } if(a=="o"){ cout << "O jak Oleksander" << endl; } if(a=="O"){ cout << "O jak Oleksander" << endl; } if(a=="p"){ cout << "P jak Patryk" << endl; } if(a=="P"){ cout << "P jak Patryk" << endl; } if(a=="r"){ cout << "R jak Ryszard" << endl; } if(a=="R"){ cout << "R jak Ryszard" << endl; } if(a=="s"){ cout << "S jak Sylwester" << endl; } if(a=="S"){ cout << "S jak Sylwester" << endl; } if(a=="t"){ cout << "T jak Tomasz" << endl; } if(a=="T"){ cout << "T jak Tomasz" << endl; } if(a=="u"){ cout << "U jak Ubbe" << endl; } if(a=="U"){ cout << "U jak Ubbe" << endl; } if(a=="v"){ cout << "V jak Viachaslau" << endl; } if(a=="V"){ cout << "V jak Viachaslau" << endl; } if(a=="w"){ cout << "W jak Wiktor" << endl; } if(a=="W"){ cout << "W jak Wiktor" << endl; } if(a=="x"){ cout << "X jak Xavier" << endl; } if(a=="X"){ cout << "X jak Xavier" << endl; } if(a=="y"){ cout << "Y jak Yeti" << endl; } if(a=="Y"){ cout << "Y jak Yeti" << endl; } if(a=="z"){ cout << "Z jak Zbigniew" << endl; } if(a=="Z"){ cout << "Z jak Zbigniew" << endl; } return 0; }