문제
URL : https://codeup.kr/problemsetsol.php?psid=23
소스코드
// 참 거짓 바꾸기
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
cout << (1 - n);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 참 거짓 바꾸기
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
cout << (1 - n);
return 0;
}