#include <iostream>
#include <stdio.h>
using namespace std;
int main() {
int t=2;
while(t)
{ char b[100];
int i=0;
cin.getline(b,30);
cout.write(b,5);
cout<<endl;
t--;
}
return 0;
}
#include <stdio.h>
using namespace std;
int main() {
int t=2;
while(t)
{ char b[100];
int i=0;
cin.getline(b,30);
cout.write(b,5);
cout<<endl;
t--;
}
return 0;
}
No comments:
Post a Comment