It keep saying me that 'If' was not declared in this scope
#include <iostream>
#include <string>
using namespace std;
int main() {
string mystr,pitanje;
cout << "Dobrodosli u TESTATRON\nnapisite svoje ime:" ;
getline (cin, mystr);
cout << "Zdravo " << mystr << " postavi mi neko pitanje\n!";
getline (cin, pitanje);
If (pitanje== "Kako si"){
cout << "Dobro"
}
}