Create code for website that sells art
#include <iostream> using namespace std; int main() { // Create a string variable to hold the name of the artist string artist = "Kandinsky"; // Create a string variable to hold the name of the work string work = "Composition"; // Create a variable to hold the year the work was created int year = 1911; // Use the variable to output the information cout << artist << " painted " << work << " in " << year; return 0; }