#include<iostream>
#include<string>
using namespace std;
int main()
{
string a;
int i, c, l;
c = 0;
while(getline(cin , a))
{
l = a.size();
for(i=0;i<l;i++)
{
if(a[i] == 34)
{
c++;
if(c % 2 == 0)
{
cout << "''";
}
else if(c % 2 != 0)
{
cout << "``";
}
}
else
{
cout << a[i];
}
}
cout << endl;
}
return 0;
}
#include<string>
using namespace std;
int main()
{
string a;
int i, c, l;
c = 0;
while(getline(cin , a))
{
l = a.size();
for(i=0;i<l;i++)
{
if(a[i] == 34)
{
c++;
if(c % 2 == 0)
{
cout << "''";
}
else if(c % 2 != 0)
{
cout << "``";
}
}
else
{
cout << a[i];
}
}
cout << endl;
}
return 0;
}
Comments
Post a Comment