language: C++ 4.7.2 (gcc-4.7.2)
date: 215 days 19 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <iostream>
using namespace std;
 
struct jerkface
{
    const jerkface &operator()(const jerkface &) const
    {
        return *this;
    }
    friend istream &operator>>(istream &is, jerkface &)
    {
        return is;
    }
    friend ostream &operator<<(ostream &os, const jerkface &)
    {
        return os;
    }
};
 
int main()
{
    jerkface rhubarb;
    cin >> rhubarb;
    rhubarb = rhubarb( rhubarb );
    cout << rhubarb;
}