USACO Bronze 2020 January - Word Processor

Author: Danh Ta Chi Thanh

Official Analysis (Python)

C++

Implementation

#include <iostream>
#include <cstdio>
#include <string>
using namespace std;
int main(){
ios_base::sync_with_stdio(0); cin.tie(0); // see Fast Input & Output
freopen("word.in","r",stdin);
freopen("word.out","w",stdout);

Join the USACO Forum!

Stuck on a problem, or don't understand a module? Join the USACO Forum and get help from other competitive programmers!