Computer Science/백준 알고리즘
[백준] 10171번 고양이 (C++)
roytravel
2022. 6. 16. 11:17
#include <iostream>
// 역슬래시
using namespace std;
int main(void)
{
cout << "\\ /\\" << endl;
cout << " ) ( ')" << endl;
cout << "( / )" << endl;
cout << " \\(__)|" << endl;
return 0;
}