blob: 500787c71a83f9f6104d189842995e586d92150b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CSCI 1300 Fall 2022
// Author: Navan Chauhan
// Recitation: 307 – TA name
// Homework 2 - Problem 1
#include<iostream>
using namespace std;
int main() {
cout << "Hello, World!"; // Prints Hello, World
}
|