USACO Bronze 2016 December - Square Pasture

Author: Maggie Liu

Official Analysis

C++

Implementation

#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
freopen("square.in", "r", stdin);
freopen("square.out", "w", stdout);
int x1, y1, x2, y2;
int x3, y3, x4, y4;

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!