Skip to content

Instantly share code, notes, and snippets.

View dada8397's full-sized avatar

Hsin Ta Chan dada8397

View GitHub Profile
@dada8397
dada8397 / uva-10424.cpp
Last active February 16, 2017 08:39
UVa 10424 - Love Calculator
#include <cstdio>
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main(void) {
string a, b;
while(getline(cin, a)) {