8 lines
131 B
C++
8 lines
131 B
C++
|
#include<iostream>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
std::cout<<"This (\") is a quote , and this (\\) is a backlash."<<std::endl;
|
||
|
return 0;
|
||
|
}
|