Untitled
unknown
plain_text
3 years ago
226 B
9
Indexable
#include <fstream>
using namespace std;
long long int l, c, ans;
int main(){
ifstream fin("tabela.in");
ofstream fout("tabela.out");
fin>>l>>c;
ans=(l-1)^(c-1);
fout<<ans;
return 0;
}Editor is loading...