#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C m(0x27,16,2);
class a{
public:
String c,l,mm,nn,k,j,i;
public:
void b(String c,String l,String mm,String nn, String k, String j, String i){
this->c =c;this->l=l;this->mm;this->nn=nn;this->k=k;this->j=j;this->i=i; 
m.setCursor(0,0);
  m.print(c+l);delay(10);
}};



void setup() {
  // put your setup code here, to run once:
m.init();
}

void loop() {
a s;
s.b("halo"," dunia","","","","","");
//s.n();s.n();


  // put your main code here, to run repeatedly:

}