#include <iostream>
usingnamespace std;
int main()
{
// int c,s,t.h; // error . instead of ,
int c,s,t,h;
cout << "Please enter the card number" << endl;
cin >> c;
// if(c == "123") // error
if(c == 123) // c is a number, not a string
{
cout << "Please enter the secret" << endl;
cin >> s;
// if(c == 123) // What is this supposed to do?
cout << "your balance is : 120,000,000 do u want to take out some y/n ? "<< endl;
cin>t;
// if (t =='y') // what is this supposed to do?
cout<<"how much?"<<endl;
cin>>h;
cout <<"ur new balance is : "<<120000000-h<<endl;
return0;
}
}