8 lines
131 B
C++
Raw Normal View History

2025-03-29 23:02:48 +08:00
#include<iostream>
int main()
{
std::cout<<"This (\") is a quote , and this (\\) is a backlash."<<std::endl;
return 0;
}