int main() {
  Computer A;
  A.input();
  Computer B = A;
  A.display();
  B.display();
}